From 2ac9f972da6c113e1f2ca4e6a7be7316269262fb Mon Sep 17 00:00:00 2001 From: Robin Mueller Date: Tue, 27 Feb 2024 10:58:23 +0100 Subject: [PATCH] remove debug printout --- linux/acs/StrComHandler.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/linux/acs/StrComHandler.cpp b/linux/acs/StrComHandler.cpp index a02d47d1..9c5e045f 100644 --- a/linux/acs/StrComHandler.cpp +++ b/linux/acs/StrComHandler.cpp @@ -426,8 +426,6 @@ ReturnValue_t StrComHandler::performFlashWrite() { file.seekg(0, file.end); fileSize = file.tellg(); if (fileSize > FLASH_REGION_SIZE * (flashWrite.lastRegion - flashWrite.firstRegion)) { - sif::debug << "Last region: " << (int)flashWrite.lastRegion - << " first region: " << (int)flashWrite.firstRegion << std::endl; sif::warning << "StrHelper::performFlashWrite: Invalid file" << std::endl; return returnvalue::FAILED; }