From b34407449c3ee5670b21c97b0532a561f9620e85 Mon Sep 17 00:00:00 2001 From: Edo Date: Wed, 26 Apr 2023 21:41:57 +0100 Subject: [PATCH] [MapRotation]: Clean unit test (#978) --- src/Components/Modules/MapRotation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Components/Modules/MapRotation.cpp b/src/Components/Modules/MapRotation.cpp index d3d9961f..ad64585e 100644 --- a/src/Components/Modules/MapRotation.cpp +++ b/src/Components/Modules/MapRotation.cpp @@ -424,7 +424,7 @@ namespace Components } catch (const std::exception& ex) { - Logger::PrintError(Game::CON_CHANNEL_ERROR, "{}: parsing of 'normal' failed\n", ex.what()); + Logger::PrintError(Game::CON_CHANNEL_ERROR, "{}. parsing of 'normal' failed\n", ex.what()); return false; } @@ -439,7 +439,7 @@ namespace Components } catch (const std::exception& ex) { - Logger::Debug("{}: parsing of 'normal' failed as expected", ex.what()); + Logger::Debug("{}. parsing of 'normal' failed as expected", ex.what()); success = true; }