]> git.sur5r.net Git - openldap/blobdiff - servers/slurpd/replica.c
sql updates
[openldap] / servers / slurpd / replica.c
index f5bf393cb1ddbe21bd727fac61a1b5afaf0fcd2a..49fc9e178e0ba0d7cca7408b62505e01c31e2fdb 100644 (file)
@@ -28,7 +28,6 @@
 #include "slurp.h"
 #include "globals.h"
 
-
 /*
  * Just invoke the Ri's process() member function, and log the start and
  * finish.
@@ -41,9 +40,9 @@ replicate(
     Ri         *ri = (Ri *) ri_arg;
 
 #ifdef NEW_LOGGING
-       LDAP_LOG (( "replica", LDAP_LEVEL_ARGS, "replicate: "
+       LDAP_LOG ( SLURPD, ARGS, "replicate: "
                "begin replication thread for %s:%d\n",
-           ((Ri *)ri)->ri_hostname, ((Ri *)ri)->ri_port ));
+           ((Ri *)ri)->ri_hostname, ((Ri *)ri)->ri_port, 0 );
 #else
     Debug( LDAP_DEBUG_ARGS, "begin replication thread for %s:%d\n",
            ((Ri *)ri)->ri_hostname, ((Ri *)ri)->ri_port, 0 );
@@ -52,9 +51,9 @@ replicate(
     ri->ri_process( ri );
 
 #ifdef NEW_LOGGING
-       LDAP_LOG (( "replica", LDAP_LEVEL_ARGS, "replicate: "
+       LDAP_LOG ( SLURPD, ARGS, "replicate: "
                "begin replication thread for %s:%d\n",
-           ri->ri_hostname, ri->ri_port ));
+           ri->ri_hostname, ri->ri_port, 0 );
 #else
     Debug( LDAP_DEBUG_ARGS, "end replication thread for %s:%d\n",
            ri->ri_hostname, ri->ri_port, 0 );
@@ -76,9 +75,9 @@ start_replica_thread(
     if ( ldap_pvt_thread_create( &(ri->ri_tid), 0, replicate,
            (void *) ri ) != 0 ) {
 #ifdef NEW_LOGGING
-       LDAP_LOG (( "replica", LDAP_LEVEL_ERR, "start_replica_thread: "
+       LDAP_LOG ( SLURPD, ERR, "start_replica_thread: "
                "replica %s:%d ldap_pvt_thread_create failed\n",
-           ri->ri_hostname, ri->ri_port ));
+           ri->ri_hostname, ri->ri_port, 0 );
 #else
        Debug( LDAP_DEBUG_ANY, "replica \"%s:%d\" ldap_pvt_thread_create failed\n",
                ri->ri_hostname, ri->ri_port, 0 );