diff options
author | Aleksander Machniak <alec@alec.pl> | 2013-05-26 09:24:05 (GMT) |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2013-05-26 09:24:05 (GMT) |
commit | 45a9d74841ea48428903c4b10878f47b8dadecbc (patch) | |
tree | e7559781e1ac847ab62393a42901e506537ebb06 /lib | |
parent | 51451125901a8cadf9d238d5298fa33f5e2ee39e (diff) | |
download | Net_LDAP3-45a9d74841ea48428903c4b10878f47b8dadecbc.tar.gz |
Replace Log::trace() with $this->_debug()
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Net/LDAP3.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Net/LDAP3.php b/lib/Net/LDAP3.php index 9355869..6e94ab5 100644 --- a/lib/Net/LDAP3.php +++ b/lib/Net/LDAP3.php @@ -680,7 +680,7 @@ class Net_LDAP3 $unique_attr = $this->config_get('unique_attribute', 'nsuniqueid'); - Log::trace("Using unique_attribute " . var_export($unique_attr, TRUE) . " at " . __FILE__ . ":" . __LINE__); + $this->_debug("Using unique_attribute " . var_export($unique_attr, TRUE) . " at " . __FILE__ . ":" . __LINE__); $attributes = array_merge(array($unique_attr => $subject), (array)$attributes); $subject = $this->entry_find_by_attribute($attributes, $base_dn); |