From: Eric Bollengier Date: Fri, 3 Dec 2021 10:32:22 +0000 (+0100) Subject: Tweak debug message in lib/progress.h X-Git-Tag: Release-11.3.2~338 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=505f12f73f761e877b3015287199dcbf2c5957fd;p=thirdparty%2Fbacula.git Tweak debug message in lib/progress.h --- diff --git a/bacula/src/lib/progress.h b/bacula/src/lib/progress.h index 592d5f1bf..920906f3f 100644 --- a/bacula/src/lib/progress.h +++ b/bacula/src/lib/progress.h @@ -81,7 +81,6 @@ public: void change_state(int new_state, int64_t new_goal, int64_t start = 0) { state = new_state; goal = new_goal; current = start; intermediate_t=time(NULL); -Tmsg3(0, "ASX change_state %c acc_n=%d acc_capacity=%d\n", new_state, acc_n, acc_capacity); if (acc_capacity > 0 && acc_n < acc_capacity) { accountings[acc_n].state = new_state; accountings[acc_n].start_t = intermediate_t;