From e3b66a409d982ae7695081008a692adc04e2cbff Mon Sep 17 00:00:00 2001 From: Howard Chu Date: Sat, 23 Apr 2005 15:55:26 +0000 Subject: [PATCH] ITS#3677 use LDAP_DEBUG_ANY when logging the shutdown reason --- servers/slapd/daemon.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/servers/slapd/daemon.c b/servers/slapd/daemon.c index 2893a905f9..53819525aa 100644 --- a/servers/slapd/daemon.c +++ b/servers/slapd/daemon.c @@ -1982,22 +1982,22 @@ slapd_daemon_task( } if( slapd_shutdown == 1 ) { - Debug( LDAP_DEBUG_TRACE, + Debug( LDAP_DEBUG_ANY, "daemon: shutdown requested and initiated.\n", 0, 0, 0 ); } else if ( slapd_shutdown == 2 ) { #ifdef HAVE_NT_SERVICE_MANAGER - Debug( LDAP_DEBUG_TRACE, + Debug( LDAP_DEBUG_ANY, "daemon: shutdown initiated by Service Manager.\n", 0, 0, 0); #else /* !HAVE_NT_SERVICE_MANAGER */ - Debug( LDAP_DEBUG_TRACE, + Debug( LDAP_DEBUG_ANY, "daemon: abnormal condition, shutdown initiated.\n", 0, 0, 0 ); #endif /* !HAVE_NT_SERVICE_MANAGER */ } else { - Debug( LDAP_DEBUG_TRACE, + Debug( LDAP_DEBUG_ANY, "daemon: no active streams, shutdown initiated.\n", 0, 0, 0 ); } -- 2.39.5