diff options
author | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-20 13:54:11 +0000 |
---|---|---|
committer | Rainer Gerhards <rgerhards@adiscon.com> | 2008-02-20 13:54:11 +0000 |
commit | 33f061484d7456f0eb34f9ebab7a82e25ac26448 (patch) | |
tree | bd7f3f767667671c0966a1a228206661adee204f /debug.c | |
parent | 2c77e9c00d337ff307835de556a1546037bc108f (diff) | |
download | rsyslog-33f061484d7456f0eb34f9ebab7a82e25ac26448.tar.gz rsyslog-33f061484d7456f0eb34f9ebab7a82e25ac26448.tar.xz rsyslog-33f061484d7456f0eb34f9ebab7a82e25ac26448.zip |
created var class out of property_t
Diffstat (limited to 'debug.c')
-rw-r--r-- | debug.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -57,7 +57,7 @@ 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? */ |