]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
use LOG_NOTICE instead of LOG_ERR
authorwessels <>
Wed, 5 Aug 1998 13:12:27 +0000 (13:12 +0000)
committerwessels <>
Wed, 5 Aug 1998 13:12:27 +0000 (13:12 +0000)
ChangeLog
src/debug.cc

index 7f31653ee4e5a10afbfd084e7e9c6e855c8833f6..ed7988e3f2268a43568042ba98bc98fd509f1b4b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -29,7 +29,7 @@
          could cause the HTTP incoming connection handler to not
          be reset.
        - Changed syslog logging.  Now squid debug levels 0 and 1 go
-         to syslog.  Level 0 gets LOG_WARNING and level 1 gets LOG_ERR
+         to syslog.  Level 0 gets LOG_WARNING and level 1 gets LOG_NOTICE
          (this needs more work!)
 
 Changes to squid-1.2.beta23 (June 22, 1998):
index d3ab5617d36e9e656ae37d62264cbd42cfdf6822..784abad6117b7293c5f259777f2c8c56817e286d 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: debug.cc,v 1.68 1998/08/05 06:16:32 wessels Exp $
+ * $Id: debug.cc,v 1.69 1998/08/05 07:12:27 wessels Exp $
  *
  * DEBUG: section 0     Debug Routines
  * AUTHOR: Harvest Derived
@@ -85,7 +85,7 @@ _db_print(va_alist)
        tmpbuf[0] = '\0';
        vsnprintf(tmpbuf, BUFSIZ, format, args);
        tmpbuf[1023] = '\0';
-       syslog(_db_level == 0 ? LOG_WARNING : LOG_ERR, "%s", tmpbuf);
+       syslog(_db_level == 0 ? LOG_WARNING : LOG_NOTICE, "%s", tmpbuf);
     }
 #endif /* HAVE_SYSLOG */
     /* write to log file */