]> git.ipfire.org Git - thirdparty/bacula.git/commitdiff
Tweak debug message in lib/progress.h
authorEric Bollengier <eric@baculasystems.com>
Fri, 3 Dec 2021 10:32:22 +0000 (11:32 +0100)
committerEric Bollengier <eric@baculasystems.com>
Thu, 24 Mar 2022 08:03:04 +0000 (09:03 +0100)
bacula/src/lib/progress.h

index 592d5f1bfa29b70b34f27e0f47e5042bdc4017d5..920906f3fdaf93d7faccebd5ca2df1efba3a657f 100644 (file)
@@ -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;