]> 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>
Thu, 24 Mar 2022 08:03:01 +0000 (09:03 +0100)
It seems that this Dmsg() is causing an issue on windows2003 32 bit

bacula/src/stored/dircmd.c

index 61401861ed59f8cb5ee5be9416968cfbe75d21e5..859d5c2643629777ba0ac4ce3a5c250c0e8fccbf 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);
 }