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):
/*
- * $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
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 */