mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-04 06:01:23 -05:00
Added LDAP_LOG messages
This commit is contained in:
parent
ca4cbc4a49
commit
f57d33f636
2 changed files with 37 additions and 0 deletions
|
|
@ -106,18 +106,31 @@ ldbm_back_db_config(
|
|||
#ifndef NO_THREADS
|
||||
int i;
|
||||
if ( argc < 2 ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG (( "config", LDAP_LEVEL_ERR, "ldbm_back_db_config: %s: "
|
||||
"line %d: missing frequency value in \"dbsync <frequency> "
|
||||
"[<wait-times> [wait-interval]]\" line\n", fname, lineno ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"%s: line %d: missing frquency value in \"dbsync <frequency> [<wait-times> [wait-interval]]\" line\n",
|
||||
fname, lineno, 0 );
|
||||
#endif
|
||||
return 1;
|
||||
}
|
||||
|
||||
i = atoi( argv[1] );
|
||||
|
||||
if( i < 0 ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG (( "config", LDAP_LEVEL_ERR, "ldbm_back_db_config: %s: "
|
||||
"line %d: frequency value (%d) invalid \"dbsync "
|
||||
"<frequency> [<wait-times> [wait-interval]]\" line\n",
|
||||
fname, lineno, i ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"%s: line %d: frquency value (%d) invalid \"dbsync <frequency> [<wait-times> [wait-interval]]\" line\n",
|
||||
fname, lineno, i );
|
||||
#endif
|
||||
return 1;
|
||||
}
|
||||
|
||||
|
|
@ -126,9 +139,16 @@ ldbm_back_db_config(
|
|||
if ( argc > 2 ) {
|
||||
i = atoi( argv[2] );
|
||||
if ( i < 0 ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG (( "config",LDAP_LEVEL_ERR, "ldbm_back_db_config: %s: "
|
||||
"line %d: frequency value (%d) invalid \"dbsync "
|
||||
"<frequency> [<wait-times> [wait-interval]]\" line\n",
|
||||
fname, lineno, i ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"%s: line %d: frquency value (%d) invalid \"dbsync <frequency> [<wait-times> [wait-interval]]\" line\n",
|
||||
fname, lineno, i );
|
||||
#endif
|
||||
return 1;
|
||||
}
|
||||
li ->li_dbsyncwaitn = i;
|
||||
|
|
@ -137,9 +157,16 @@ ldbm_back_db_config(
|
|||
if ( argc > 3 ) {
|
||||
i = atoi( argv[3] );
|
||||
if ( i <= 0 ) {
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG (( "config",LDAP_LEVEL_ERR, "ldbm_back_db_config: %s: "
|
||||
"line %d: frequency value (%d) invalid \"dbsync "
|
||||
"<frequency> [<wait-times> [wait-interval]]\" line\n",
|
||||
fname, lineno, i ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"%s: line %d: frquency value (%d) invalid \"dbsync <frequency> [<wait-times> [wait-interval]]\" line\n",
|
||||
fname, lineno, i );
|
||||
#endif
|
||||
return 1;
|
||||
}
|
||||
li ->li_dbsyncwaitinterval = i;
|
||||
|
|
@ -149,8 +176,13 @@ ldbm_back_db_config(
|
|||
li->li_dbwritesync = 0;
|
||||
|
||||
#else
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG (( "config",LDAP_LEVEL_ERR, "ldbm_back_db_config: "\"dbsync\""
|
||||
" policies not supported in non-threaded environments\n" ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"\"dbsync\" policies not supported in non-threaded environments\n", 0, 0, 0);
|
||||
#endif
|
||||
return 1;
|
||||
#endif
|
||||
|
||||
|
|
|
|||
|
|
@ -200,8 +200,13 @@ ldbm_back_db_open(
|
|||
|
||||
if ( rc != 0 )
|
||||
{
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG (( "init", LDAP_LEVEL_ERR, "ldbm_back_db_open: sync "
|
||||
"ldap_pvt_thread_create failed (%d)\n", rc ));
|
||||
#else
|
||||
Debug( LDAP_DEBUG_ANY,
|
||||
"sync ldap_pvt_thread_create failed (%d)\n", rc, 0, 0 );
|
||||
#endif
|
||||
return 1;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue