]> git.sur5r.net Git - openldap/commitdiff
ITS#2215: Let Statslog() work if only one of LDAP_DEBUG/LDAP_SYSLOG is #defined
authorHallvard Furuseth <hallvard@openldap.org>
Mon, 9 Dec 2002 18:18:14 +0000 (18:18 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Mon, 9 Dec 2002 18:18:14 +0000 (18:18 +0000)
servers/slapd/slap.h

index a763f6c4ee5214e9a62b3c35a8fcd9a16adeffec..a1b2bed4bb5985e5fc8c7c342da80ad6158d67e5 100644 (file)
@@ -1881,6 +1881,19 @@ typedef struct slap_conn {
                        syslog( ldap_syslog_level, (fmt), (connid), (opid), (arg1), \
                                (arg2), (arg3) ); \
        } while (0)
+#elif defined(LDAP_DEBUG)
+#define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 ) \
+       do { \
+               if ( ldap_debug & (level) ) \
+                       fprintf( stderr, (fmt), (connid), (opid), (arg1), (arg2), (arg3) );\
+       } while (0)
+#elif defined(LDAP_SYSLOG)
+#define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 ) \
+       do { \
+               if ( ldap_syslog & (level) ) \
+                       syslog( ldap_syslog_level, (fmt), (connid), (opid), (arg1), \
+                               (arg2), (arg3) ); \
+       } while (0)
 #else
 #define Statslog( level, fmt, connid, opid, arg1, arg2, arg3 )
 #endif