]> git.sur5r.net Git - openldap/commitdiff
Added LDAP_LOG Messages
authorJulius Enarusai <julius@openldap.org>
Mon, 15 Apr 2002 20:18:47 +0000 (20:18 +0000)
committerJulius Enarusai <julius@openldap.org>
Mon, 15 Apr 2002 20:18:47 +0000 (20:18 +0000)
servers/slurpd/reject.c

index bb27b8cd2d1377c08b8914bdbc363df6cd5b5fa6..d3346cf50902bd53205307c82ea02e22b170ee93 100644 (file)
@@ -64,9 +64,15 @@ write_reject(
        int rjfd;
        if (( rjfd = open( rejfile, O_RDWR | O_APPEND | O_CREAT,
                S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP )) < 0 ) {
+#ifdef NEW_LOGGING
+               LDAP_LOG (( "reject", LDAP_LEVEL_ERR, "write_reject: "
+                       "Error: Cannot create \"%s\":%s\n", 
+                       rejfile, sys_errlist[ errno ] ));
+#else
            Debug( LDAP_DEBUG_ANY,
                "Error: write_reject: Cannot create \"%s\": %s\n",
                rejfile, sys_errlist[ errno ], 0 );
+#endif
            ldap_pvt_thread_mutex_unlock( &sglob->rej_mutex );
            return;
        } else {
@@ -74,8 +80,13 @@ write_reject(
        }
     }
     if (( rc = acquire_lock( rejfile, &rfp, &lfp )) < 0 ) {
+#ifdef NEW_LOGGING
+       LDAP_LOG (( "reject", LDAP_LEVEL_ERR, "write_reject: "
+               "Error: Cannot open reject file \"%s\"\n", rejfile ));
+#else
        Debug( LDAP_DEBUG_ANY, "Error: cannot open reject file \"%s\"\n",
                rejfile, 0, 0 );
+#endif
     } else {
        fseek( rfp, 0, 2 );
        if ( errmsg != NULL ) {
@@ -84,14 +95,24 @@ write_reject(
            fprintf( rfp, "%s: %s\n", ERROR_STR, ldap_err2string( lderr ));
        }
        if ((rc = re->re_write( ri, re, rfp )) < 0 ) {
+#ifdef NEW_LOGGING
+               LDAP_LOG (( "reject", LDAP_LEVEL_ERR, "write_reject: "
+                       "Error: Cannot write reject file \"%s\"\n", rejfile ));
+#else
            Debug( LDAP_DEBUG_ANY,
                    "Error: cannot write reject file \"%s\"\n",
                    rejfile, 0, 0 );
+#endif
        }
        (void) relinquish_lock( rejfile, rfp, lfp );
+#ifdef NEW_LOGGING
+       LDAP_LOG (( "reject", LDAP_LEVEL_ERR, "write_reject: "
+               "Error: ldap operation failed, data written to \"%s\"\n", rejfile ));
+#else
        Debug( LDAP_DEBUG_ANY,
                "Error: ldap operation failed, data written to \"%s\"\n",
                rejfile, 0, 0 );
+#endif
     }
     ldap_pvt_thread_mutex_unlock( &sglob->rej_mutex );
     return;