mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 19:19:35 -05:00
Realign logging levels.
Stats now logs all operations, stats2 additionally intermediate messages (search entries).
This commit is contained in:
parent
1dd0e5131a
commit
30e538e836
3 changed files with 17 additions and 16 deletions
|
|
@ -158,8 +158,8 @@ connection_init( ber_socket_t s, const char *peername, int flags )
|
|||
connection_assign_nextid( c );
|
||||
|
||||
Debug( LDAP_DEBUG_CONNS, "connection_init: "
|
||||
"connection connid=%lu allocated for socket fd=%d\n",
|
||||
c->c_connid, s );
|
||||
"connection connid=%lu allocated for socket fd=%d peername=%s\n",
|
||||
c->c_connid, s, peername );
|
||||
|
||||
CONNECTION_LOCK(c);
|
||||
c->c_state = SLAP_C_ACTIVE;
|
||||
|
|
|
|||
|
|
@ -455,8 +455,9 @@ operation_init( Connection *c, BerElement *ber )
|
|||
ber_skip_element( ber, &op->o_ctrls );
|
||||
}
|
||||
|
||||
Debug( LDAP_DEBUG_TRACE, "operation_init: "
|
||||
"set up a new operation, %s with msgid=%d for client connid=%lu\n",
|
||||
Debug( LDAP_DEBUG_STATS, "operation_init: "
|
||||
"received a new operation, %s with msgid=%d for client "
|
||||
"connid=%lu\n",
|
||||
slap_msgtype2str( op->o_tag ), op->o_client_msgid,
|
||||
op->o_client_connid );
|
||||
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ forward_response( Operation *op, BerElement *ber )
|
|||
ber_skip_element( ber, &controls );
|
||||
}
|
||||
|
||||
Debug( LDAP_DEBUG_CONNS, "forward_response: "
|
||||
Debug( LDAP_DEBUG_TRACE, "forward_response: "
|
||||
"%s to client connid=%lu request msgid=%d\n",
|
||||
slap_msgtype2str( response_tag ), op->o_client_connid,
|
||||
op->o_client_msgid );
|
||||
|
|
@ -71,7 +71,7 @@ forward_final_response( Operation *op, BerElement *ber )
|
|||
{
|
||||
int rc;
|
||||
|
||||
Debug( LDAP_DEBUG_CONNS, "forward_final_response: "
|
||||
Debug( LDAP_DEBUG_STATS, "forward_final_response: "
|
||||
"connid=%lu msgid=%d finishing up with a request for "
|
||||
"client connid=%lu\n",
|
||||
op->o_upstream_connid, op->o_upstream_msgid, op->o_client_connid );
|
||||
|
|
@ -111,10 +111,10 @@ handle_bind_response( Operation *op, BerElement *ber )
|
|||
goto done;
|
||||
}
|
||||
|
||||
Debug( LDAP_DEBUG_CONNS, "handle_bind_response: "
|
||||
"received response for bind request by client connid=%lu, "
|
||||
"result=%d\n",
|
||||
op->o_client_connid, result );
|
||||
Debug( LDAP_DEBUG_STATS, "handle_bind_response: "
|
||||
"received response for bind request msgid=%d by client "
|
||||
"connid=%lu, result=%d\n",
|
||||
op->o_client_msgid, op->o_client_connid, result );
|
||||
|
||||
CONNECTION_LOCK(upstream);
|
||||
if ( result != LDAP_SASL_BIND_IN_PROGRESS ) {
|
||||
|
|
@ -188,12 +188,12 @@ handle_vc_bind_response( Operation *op, BerElement *ber )
|
|||
CONNECTION_UNLOCK(upstream);
|
||||
}
|
||||
|
||||
CONNECTION_LOCK(c);
|
||||
Debug( LDAP_DEBUG_STATS, "handle_vc_bind_response: "
|
||||
"received response for bind request msgid=%d by client "
|
||||
"connid=%lu, result=%d\n",
|
||||
op->o_client_msgid, op->o_client_connid, result );
|
||||
|
||||
Debug( LDAP_DEBUG_CONNS, "handle_vc_bind_response: "
|
||||
"received response for bind request by client connid=%lu, "
|
||||
"result=%d\n",
|
||||
c->c_connid, result );
|
||||
CONNECTION_LOCK(c);
|
||||
|
||||
if ( tag == LDAP_TAG_EXOP_VERIFY_CREDENTIALS_COOKIE ) {
|
||||
if ( !BER_BVISNULL( &c->c_vc_cookie ) ) {
|
||||
|
|
@ -386,7 +386,7 @@ handle_one_response( Connection *c )
|
|||
}
|
||||
}
|
||||
if ( op ) {
|
||||
Debug( LDAP_DEBUG_TRACE, "handle_one_response: "
|
||||
Debug( LDAP_DEBUG_STATS2, "handle_one_response: "
|
||||
"upstream connid=%lu, processing response for "
|
||||
"client connid=%lu, msgid=%d\n",
|
||||
c->c_connid, op->o_client_connid, op->o_client_msgid );
|
||||
|
|
|
|||
Loading…
Reference in a new issue