Skip to content
Snippets Groups Projects
Commit 98f3c3d4 authored by Julius Enarusai's avatar Julius Enarusai
Browse files

Added LDAP_LOG Messages
parent 4ab3ce16
No related branches found
No related tags found
No related merge requests found
......@@ -96,10 +96,16 @@ ldap_back_dn_massage(
res->bv_val = ch_malloc( res->bv_len + 1 );
strncpy( res->bv_val, dn->bv_val, diff );
strcpy( &res->bv_val[diff], li->suffix_massage[i+dst]->bv_val );
#ifdef NEW_LOGGING
LDAP_LOG (( "suffixmassage", LDAP_LEVEL_ARGS,
"ldap_back_dn_massage: converted \"%s\" to \"%s\"\n",
dn->bv_val, res->bv_val ));
#else
Debug( LDAP_DEBUG_ARGS,
"ldap_back_dn_massage:"
" converted \"%s\" to \"%s\"\n",
dn->bv_val, res->bv_val, 0 );
#endif
break;
}
}
......
......@@ -71,9 +71,15 @@ ldap_back_conn_destroy(
ldap_pvt_thread_mutex_unlock( &li->conn_mutex );
if (lc) {
#ifdef NEW_LOGGING
LDAP_LOG(( "backend", LDAP_LEVEL_DETAIL1,
"ldap_back_conn_destroy: destroying conn %ld\n",
conn->c_connid ));
#else /* !NEW_LOGGING */
Debug( LDAP_DEBUG_TRACE,
"=>ldap_back_conn_destroy: destroying conn %ld\n",
lc->conn->c_connid, 0, 0 );
#endif
#ifdef ENABLE_REWRITE
/*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment