summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert James Kaes <rjkaes@users.sourceforge.net>2001-08-29 03:59:12 +0000
committerRobert James Kaes <rjkaes@users.sourceforge.net>2001-08-29 03:59:12 +0000
commit9bdfa623ba4c45354acdccb99d5235a72e95eb72 (patch)
tree038b9863e2852268dfa76bb13603b069a3223e7b
parent4c24890f17f3e28a871d802e1d42946a8ede64af (diff)
downloadtinyproxy-9bdfa623ba4c45354acdccb99d5235a72e95eb72.tar.gz
tinyproxy-9bdfa623ba4c45354acdccb99d5235a72e95eb72.zip
Changed how we handle when compiled with debug code.
-rw-r--r--src/log.c15
1 files changed, 4 insertions, 11 deletions
diff --git a/src/log.c b/src/log.c
index b440911..be69f9a 100644
--- a/src/log.c
+++ b/src/log.c
@@ -1,4 +1,4 @@
-/* $Id: log.c,v 1.12 2001-08-28 15:51:58 rjkaes Exp $
+/* $Id: log.c,v 1.13 2001-08-29 03:59:12 rjkaes Exp $
*
* Logs the various messages which tinyproxy produces to either a log file or
* the syslog daemon. Not much to it...
@@ -48,15 +48,7 @@ static short int log_level = LOG_ERR;
*/
void set_log_level(short int level)
{
-#ifndef NDEBUG
- /*
- * If we're running with debugging enabled, then set the log level
- * to DEBUG regardless of what's in the configuration file.
- */
- log_level = LOG_DEBUG;
-#else
log_level = level;
-#endif
}
/*
@@ -73,6 +65,7 @@ void log_message(short int level, char *fmt, ...)
char str[STRING_LENGTH];
#endif
+#ifdef NDEBUG
/*
* Figure out if we should write the message or not.
*/
@@ -83,8 +76,8 @@ void log_message(short int level, char *fmt, ...)
if (level > LOG_INFO && level != LOG_CONN)
return;
} else if (level > log_level)
- return;
-
+ return;
+#endif
#ifdef HAVE_SYSLOG_H