From 88769bb46c34917f49c1d93abb0b1894b934b32c Mon Sep 17 00:00:00 2001 From: "Jakob.Meier" <–meierj@irs.uni-stuttgart.de> Date: Mon, 12 Jul 2021 20:16:45 +0200 Subject: [PATCH] replaced sif::debug by sif::warning --- linux/uart/UartComIF.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/uart/UartComIF.cpp b/linux/uart/UartComIF.cpp index 6a126fa..c84affa 100644 --- a/linux/uart/UartComIF.cpp +++ b/linux/uart/UartComIF.cpp @@ -405,7 +405,7 @@ ReturnValue_t UartComIF::handleNoncanonicalRead(UartCookie &uartCookie, UartDevi } else if (bytesRead != static_cast(requestLen)) { if(uartCookie.isReplySizeFixed()) { - sif::debug << "UartComIF::requestReceiveMessage: Only read " << bytesRead << + sif::warning << "UartComIF::requestReceiveMessage: Only read " << bytesRead << " of " << requestLen << " bytes" << std::endl; return RETURN_FAILED; }