]> git.ipfire.org Git - thirdparty/openldap.git/commitdiff
Fixup debug msgs
authorHoward Chu <hyc@openldap.org>
Fri, 5 Feb 2021 23:55:27 +0000 (23:55 +0000)
committerHoward Chu <hyc@openldap.org>
Fri, 5 Feb 2021 23:55:27 +0000 (23:55 +0000)
servers/slapd/back-asyncmeta/meta_result.c

index 39850884568393d65f2cd4a43d41577e1cfdbeb7..1962336ac7454b05e093f2865b3ce9ad58b378be 100644 (file)
@@ -1013,13 +1013,13 @@ asyncmeta_handle_search_msg(LDAPMessage *res, a_metaconn_t *mc, bm_context_t *bc
 
                        if ( candidates[ i ].sr_err == LDAP_SUCCESS ) {
                                Debug( LDAP_DEBUG_TRACE, "%s asyncmeta_search_result[%d] "
-                                      "match=\"%s\" err=%ld",
+                                      "match=\"%s\" err=%ld\n",
                                       op->o_log_prefix, i,
                                       candidates[ i ].sr_matched ? candidates[ i ].sr_matched : "",
                                       (long) candidates[ i ].sr_err );
                        } else {
                                        Debug( LDAP_DEBUG_ANY,  "%s asyncmeta_search_result[%d] "
-                                      "match=\"%s\" err=%ld (%s)",
+                                      "match=\"%s\" err=%ld (%s)\n",
                                       op->o_log_prefix, i,
                                       candidates[ i ].sr_matched ? candidates[ i ].sr_matched : "",
                                               (long) candidates[ i ].sr_err, ldap_err2string( candidates[ i ].sr_err ) );
@@ -1382,8 +1382,8 @@ asyncmeta_op_read_error(a_metaconn_t *mc, int candidate, int error, void* ctx)
        SlapReply *candidates;
        /* no outstanding ops, nothing to do but log */
        Debug( LDAP_DEBUG_TRACE,
-              "asyncmeta_op_read_error: ldr=%p\n",
-              mc->mc_conns[candidate].msc_ldr );
+              "asyncmeta_op_read_error: ldr=%p, err=%d\n",
+              mc->mc_conns[candidate].msc_ldr, error );
 
        ldap_pvt_thread_mutex_lock( &mc->mc_om_mutex );
        /*someone may be trying to write */