]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
Remove suspicious debug line on setdebug()
authorEric Bollengier <eric@baculasystems.com>
Thu, 25 Mar 2021 10:22:31 +0000 (11:22 +0100)
committerEric Bollengier <eric@baculasystems.com>
Fri, 26 Mar 2021 13:57:58 +0000 (14:57 +0100)
It seems that this Dmsg() is causing an issue on windows2003 32 bit

bacula/src/stored/dircmd.c

index 4d2330769b041e441795ad974b523acba4412f1f..030682fe0bb24f9ba2e6765229529ed041f7d8f4 100644 (file)
@@ -479,9 +479,6 @@ static bool setdebug_cmd(JCR *jcr)
    debug_level_tags = level_tags;
 
    bee_setdebug_cmd_parse_options(jcr, options);
-
-   Dmsg6(150, "Level=%lld trace=%d hangup=%d blowup=%d options=%s tags=%s\n",
-         lvl, get_trace(), get_hangup(), get_blowup(), options, tags);
    return dir->fsend(OKsetdebug, lvl, trace_flag, options, tags);
 }