]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Bug #1485: logformat debugging messages
authorserassio <>
Sun, 19 Feb 2006 18:21:07 +0000 (18:21 +0000)
committerserassio <>
Sun, 19 Feb 2006 18:21:07 +0000 (18:21 +0000)
Patch provided by Gonzalo Arana.

src/access_log.cc
src/cache_cf.cc

index 73b939fccc2c79372a930055720b30a78c424914..5982b4031e81176ccd57356f96a69d72c9e4ee72 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: access_log.cc,v 1.109 2006/02/18 00:04:30 wessels Exp $
+ * $Id: access_log.cc,v 1.110 2006/02/19 11:21:07 serassio Exp $
  *
  * DEBUG: section 46    Access Log
  * AUTHOR: Duane Wessels
@@ -1085,7 +1085,7 @@ accessLogParseLogFormat(logformat_token ** fmt, char *def)
     logformat_token *new_lt, *last_lt;
     enum log_quote quote = LOG_QUOTE_NONE;
 
-    debug(46, 1) ("accessLogParseLogFormat: got definition '%s'\n", def);
+    debug(46, 2) ("accessLogParseLogFormat: got definition '%s'\n", def);
 
     /* very inefficent parser, but who cares, this needs to be simple */
     /* First off, let's tokenize, we'll optimize in a second pass.
index 27c190fc578aeb4cfa99a6f4efa15d7c6cceb961..3300fde07edcda8d38051a1778b73da51f0a603b 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: cache_cf.cc,v 1.487 2005/12/26 11:35:22 serassio Exp $
+ * $Id: cache_cf.cc,v 1.488 2006/02/19 11:21:07 serassio Exp $
  *
  * DEBUG: section 3     Configuration File Parsing
  * AUTHOR: Harvest Derived
@@ -3195,7 +3195,7 @@ parse_logformat(logformat ** logformat_definitions)
     if ((def = strtok(NULL, "\r\n")) == NULL)
         self_destruct();
 
-    debug(3, 1) ("Logformat for '%s' is '%s'\n", name, def);
+    debug(3, 2) ("Logformat for '%s' is '%s'\n", name, def);
 
     nlf = (logformat *)xcalloc(1, sizeof(logformat));