diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-30 09:16:27 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-01-30 09:16:27 +0000 |
commit | 09a99b4d971607269525e56f1680d0ae6a0ea137 (patch) | |
tree | 5b1f96ec8829849a11b43726f5e49821bd2770e3 /debug.c | |
parent | f547af1f86b489faaf16b4a040df5ebd3c974af5 (diff) | |
download | rsyslog-09a99b4d971607269525e56f1680d0ae6a0ea137.tar.gz rsyslog-09a99b4d971607269525e56f1680d0ae6a0ea137.tar.bz2 rsyslog-09a99b4d971607269525e56f1680d0ae6a0ea137.zip |
fixed a bug that caused $MainMsgQueueCheckpointInterval to work incorrectly
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -59,7 +59,7 @@ int Debug; /* debug flag - read-only after startup */ int debugging_on = 0; /* read-only, except on sig USR1 */ static int bLogFuncFlow = 0; /* shall the function entry and exit be logged to the debug log? */ static int bPrintFuncDBOnExit = 0; /* shall the function entry and exit be logged to the debug log? */ -static int bPrintMutexAction = 1; /* shall mutex calls be printed to the debug log? */ +static int bPrintMutexAction = 0; /* shall mutex calls be printed to the debug log? */ static int bPrintTime = 1; /* print a timestamp together with debug message */ static char *pszAltDbgFileName = NULL; /* if set, debug output is *also* sent to here */ static FILE *altdbg = NULL; /* and the handle for alternate debug output */ |