From: Eric Bollengier Date: Mon, 11 Dec 2023 12:29:56 +0000 (+0100) Subject: Tweak debug messages X-Git-Tag: Beta-15.0.1~29 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3b3f7e1341c7b59a3c4b4b421bc06c9d02b7073b;p=thirdparty%2Fbacula.git Tweak debug messages --- diff --git a/bacula/src/dird/bsr.c b/bacula/src/dird/bsr.c index 363fa58f3..e139ab643 100644 --- a/bacula/src/dird/bsr.c +++ b/bacula/src/dird/bsr.c @@ -1007,7 +1007,7 @@ bool split_bsr_loop(JCR *jcr, bootstrap_info &info) last_split_job_num = job_num; /* ignore volumes too old */ } else { /* This is unexpected that the same job is going backward into a volume!*/ - Dmsg3(0, "BSR: Error going backward on the Volume=%s on the Session=%lu:%lu\n", volume.c_str(), VolSessionTime, VolSessionId); + Dmsg3(20, "BSR: Error going backward on the Volume=%s on the Session=%lu:%lu\n", volume.c_str(), VolSessionTime, VolSessionId); } } last_volume.strcpy(volume.c_str()); @@ -1035,7 +1035,7 @@ bool split_bsr_loop(JCR *jcr, bootstrap_info &info) char *p = strchr(ua->argv[0], '-'); if (p == NULL) { /* error */ - Dmsg1(0, "Error VolAddr is expected to be a range: \"%s\"\n", ua->argv[0]); + Dmsg1(20, "Error VolAddr is expected to be a range: \"%s\"\n", ua->argv[0]); VolAddrStart = str_to_uint64(ua->argv[0]); VolAddrEnd = VolAddrStart; } else {