Skip to content
Snippets Groups Projects
Commit 9979d200 authored by Howard Chu's avatar Howard Chu
Browse files

Fleshed out debug2syslog

parent 445b7982
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,10 @@
#include <ac/string.h>
#include <ac/time.h>
#ifdef LDAP_SYSLOG
#include <ac/syslog.h>
#endif
#include "ldap_log.h"
#include "ldap_defaults.h"
#include "lber.h"
......@@ -29,19 +33,22 @@ static long numLevels = 0;
static FILE *log_file = NULL;
static int global_level = 0;
#if 0
#ifdef LDAP_SYSLOG
static int use_syslog = 0;
static int debug2syslog(int l) {
switch (l) {
/* insert mapping cases here */
default:
case LDAP_LEVEL_EMERG: return LOG_EMERG;
case LDAP_LEVEL_ALERT: return LOG_ALERT;
case LDAP_LEVEL_CRIT: return LOG_CRIT;
case LDAP_LEVEL_ERR: return LOG_ERR;
case LDAP_LEVEL_WARNING: return LOG_WARNING;
case LDAP_LEVEL_NOTICE: return LOG_NOTICE;
case LDAP_LEVEL_INFO: return LOG_INFO;
}
return LOG_DEBUG
return LOG_DEBUG;
}
#endif
#endif
static char *lutil_levels[] = {"emergency", "alert", "critical",
"error", "warning", "notice",
......@@ -142,7 +149,6 @@ void lutil_log_int(
return;
}
#if 0
#ifdef LDAP_SYSLOG
/* we're configured to use syslog */
if( use_syslog ) {
......@@ -150,7 +156,6 @@ void lutil_log_int(
return;
}
#endif
#endif
#if 0
#ifdef HAVE_WINSOCK
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment