mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Added LDAP_LOG Messages
This commit is contained in:
parent
7d162b6806
commit
a1b4f71443
1 changed files with 18 additions and 0 deletions
|
|
@ -39,13 +39,25 @@ replicate(
|
|||
{
|
||||
Ri *ri = (Ri *) ri_arg;
|
||||
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG (( "replica", LDAP_LEVEL_ARGS, "replicate: "
|
||||
"begin replication thread for %s:%d\n",
|
||||
((Ri *)ri)->ri_hostname, ((Ri *)ri)->ri_port ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ARGS, "begin replication thread for %s:%d\n",
|
||||
((Ri *)ri)->ri_hostname, ((Ri *)ri)->ri_port, 0 );
|
||||
#endif
|
||||
|
||||
ri->ri_process( ri );
|
||||
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG (( "replica", LDAP_LEVEL_ARGS, "replicate: "
|
||||
"begin replication thread for %s:%d\n",
|
||||
ri->ri_hostname, ri->ri_port ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ARGS, "end replication thread for %s:%d\n",
|
||||
ri->ri_hostname, ri->ri_port, 0 );
|
||||
#endif
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
@ -62,8 +74,14 @@ start_replica_thread(
|
|||
/* POSIX_THREADS or compatible */
|
||||
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: "
|
||||
"replica %s:%d ldap_pvt_thread_create failed\n",
|
||||
ri->ri_hostname, ri->ri_port ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY, "replica \"%s:%d\" ldap_pvt_thread_create failed\n",
|
||||
ri->ri_hostname, ri->ri_port, 0 );
|
||||
#endif
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue