From: Eric Bollengier Date: Thu, 25 Mar 2021 10:22:31 +0000 (+0100) Subject: Remove suspicious debug line on setdebug() X-Git-Tag: Release-11.0.2~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d68cb531f3256b8d18370579ed9a17e4ae9ed78a;p=thirdparty%2Fbacula.git Remove suspicious debug line on setdebug() It seems that this Dmsg() is causing an issue on windows2003 32 bit --- diff --git a/bacula/src/stored/dircmd.c b/bacula/src/stored/dircmd.c index 4d2330769..030682fe0 100644 --- a/bacula/src/stored/dircmd.c +++ b/bacula/src/stored/dircmd.c @@ -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); }