From 5cb8b4f75e9bc8d5e22ba9347e3fb49c4392eeb2 Mon Sep 17 00:00:00 2001 From: Uwe Seimet Date: Tue, 29 Oct 2024 18:12:31 +0100 Subject: [PATCH] Update logging --- cpp/controllers/abstract_controller.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/cpp/controllers/abstract_controller.cpp b/cpp/controllers/abstract_controller.cpp index 10bfe0e8..bb0e9c10 100644 --- a/cpp/controllers/abstract_controller.cpp +++ b/cpp/controllers/abstract_controller.cpp @@ -56,8 +56,6 @@ void AbstractController::SetTransferSize(int length, int size) // The number of bytes to transfer in a single chunk chunk_size = size; - - LogTrace(fmt::format("Going to transfer {0} byte(s) in chunks of {1} byte(s)", total_length, chunk_size)); } void AbstractController::CopyToBuffer(const void *src, size_t size) // NOSONAR Any kind of source data is permitted