From c46e2387a49ace5f9208bb3fcf3d6245868146b0 Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Mon, 20 Sep 2021 21:19:51 +0200 Subject: [PATCH] added printing summary after uploading tapes to server --- src/tape.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/tape.c b/src/tape.c index d5d07236..4c7dec98 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1851,6 +1851,14 @@ static int AutoPlayTapesExt(boolean initialize) return num_tapes; } + if (global.autoplay_mode == AUTOPLAY_MODE_UPLOAD) + { + Print("\n"); + PrintLine("=", 79); + Print("SUMMARY: %d tapes uploaded.\n", num_tapes); + PrintLine("=", 79); + } + // clear timestamp for batch tape upload (required after interactive upload) global.autoplay_time = 0; -- 2.34.1