Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
OpenLDAP
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Christopher Ng
OpenLDAP
Commits
9979d200
Commit
9979d200
authored
22 years ago
by
Howard Chu
Browse files
Options
Downloads
Patches
Plain Diff
Fleshed out debug2syslog
parent
445b7982
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
libraries/liblutil/debug.c
+12
-7
12 additions, 7 deletions
libraries/liblutil/debug.c
with
12 additions
and
7 deletions
libraries/liblutil/debug.c
+
12
−
7
View file @
9979d200
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment