summaryrefslogtreecommitdiffstats
path: root/debug.c
diff options
context:
space:
mode:
authorRainer Gerhards <rgerhards@adiscon.com>2008-02-26 17:49:26 +0000
committerRainer Gerhards <rgerhards@adiscon.com>2008-02-26 17:49:26 +0000
commiteb4b1915d1655d801e0232f4196fbdc1af3c857f (patch)
treef0527b24b8c28a8f4acba20e5e637edb7a3532e8 /debug.c
parent3ae3033800076fca0e9f5f491da2f420b610ffc2 (diff)
downloadrsyslog-eb4b1915d1655d801e0232f4196fbdc1af3c857f.tar.gz
rsyslog-eb4b1915d1655d801e0232f4196fbdc1af3c857f.tar.xz
rsyslog-eb4b1915d1655d801e0232f4196fbdc1af3c857f.zip
worked on queue stability
Diffstat (limited to 'debug.c')
-rw-r--r--debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug.c b/debug.c
index c99dfa93..b3a6aa8a 100644
--- a/debug.c
+++ b/debug.c
@@ -57,10 +57,10 @@ static dbgThrdInfo_t *dbgGetThrdInfo(void);
/* static data (some time to be replaced) */
int Debug; /* debug flag - read-only after startup */
int debugging_on = 0; /* read-only, except on sig USR1 */
-static int bLogFuncFlow = 1; /* shall the function entry and exit be logged to the debug log? */
+static int bLogFuncFlow = 0; /* shall the function entry and exit be logged to the debug log? */
static int bLogAllocFree = 0; /* shall calls to (m/c)alloc and free 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 = 0; /* shall mutex calls be printed to the debug log? */
+static int bPrintMutexAction = 1; /* 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 */