aboutsummaryrefslogtreecommitdiff
path: root/src/log_file.c
diff options
context:
space:
mode:
authorlns <matzeton@googlemail.com>2019-02-04 01:54:57 +0100
committerlns <matzeton@googlemail.com>2019-02-04 01:54:57 +0100
commit4f74e5f5c4ba15f1ea02e7425c18cbd06642ce2e (patch)
tree18ebe7301a7f4b1c25f516b71722d7e49e87c182 /src/log_file.c
parente21e46d83d3b4292ad6de84b26902246ee398bcb (diff)
parentf68988980d72d837f49451068b98bc96d1a548fc (diff)
Merge branch 'feature/jail_packet'
Diffstat (limited to 'src/log_file.c')
-rw-r--r--src/log_file.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/log_file.c b/src/log_file.c
index 5164aed..833b2ad 100644
--- a/src/log_file.c
+++ b/src/log_file.c
@@ -108,7 +108,7 @@ void log_fmt_file(log_priority prio, const char *fmt, ...)
my_pid = getpid();
curtime_str(time, sizeof time);
switch (prio) {
- case DEBUG:
+ case LP_DEBUG:
LOG(flog, time, "[DEBUG] ", my_pid, out);
break;
case NOTICE:
@@ -148,7 +148,7 @@ void log_fmtex_file(log_priority prio, const char *srcfile,
my_pid = getpid();
curtime_str(time, sizeof time);
switch (prio) {
- case DEBUG:
+ case LP_DEBUG:
LOGEX(flog, time, "[DEBUG] ", my_pid, srcfile, line, out);
break;
case NOTICE:
@@ -186,7 +186,7 @@ void log_fmtexerr_file(log_priority prio, const char *srcfile,
my_pid = getpid();
curtime_str(time, sizeof time);
switch (prio) {
- case DEBUG:
+ case LP_DEBUG:
LOGEXERR(flog, time, "[DEBUG] ", my_pid, srcfile, line, out,
saved_errno);
break;