From f1bb70269f5b1a56207cb48a312aa946a50b4bdd Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Wed, 12 Aug 2020 00:34:22 +0200 Subject: [PATCH] [libcalamares] Improve warning/error logging - the lack of a space after the : was inconsistent with most of the rest of the logging. --- src/libcalamares/utils/Logger.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcalamares/utils/Logger.cpp b/src/libcalamares/utils/Logger.cpp index 5a2149f44..d132a2e3e 100644 --- a/src/libcalamares/utils/Logger.cpp +++ b/src/libcalamares/utils/Logger.cpp @@ -188,11 +188,11 @@ CDebug::CDebug( unsigned int debugLevel, const char* func ) { if ( debugLevel <= LOGERROR ) { - m_msg = QStringLiteral( "ERROR:" ); + m_msg = QStringLiteral( "ERROR: " ); } else if ( debugLevel <= LOGWARNING ) { - m_msg = QStringLiteral( "WARNING:" ); + m_msg = QStringLiteral( "WARNING: " ); } }