From: Eric Bollengier Date: Mon, 7 Dec 2020 10:49:40 +0000 (+0100) Subject: Fix debug message X-Git-Tag: Release-11.3.2~947 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7a5b9982e72b654161cb0b65e88c5c7a0f460c51;p=thirdparty%2Fbacula.git Fix debug message --- diff --git a/bacula/src/filed/hello.c b/bacula/src/filed/hello.c index dc7250907..343234afd 100644 --- a/bacula/src/filed/hello.c +++ b/bacula/src/filed/hello.c @@ -162,11 +162,10 @@ bool send_fdcaps(JCR *jcr, BSOCK *sd) do_dedup=1; #endif - Dmsg1(200, "Send caps to SD dedup=0 rehydration=%d\n", - do_dedup, - rehydration); + Dmsg3(200, "Send caps to SD dedup=%d rehydration=%d proxy=%d\n", + do_dedup, rehydration, jcr->director->remote); - return sd->fsend("fdcaps: dedup=0 rehydration=%d proxy=%d\n", + return sd->fsend("fdcaps: dedup=%d rehydration=%d proxy=%d\n", do_dedup, rehydration, jcr->director->remote); }