[libcalamares] Improve warning/error logging

- the lack of a space after the : was inconsistent with most of the
  rest of the logging.
This commit is contained in:
Adriaan de Groot 2020-08-12 00:34:22 +02:00
parent 215cd0d1c3
commit f1bb70269f

View File

@ -188,11 +188,11 @@ CDebug::CDebug( unsigned int debugLevel, const char* func )
{ {
if ( debugLevel <= LOGERROR ) if ( debugLevel <= LOGERROR )
{ {
m_msg = QStringLiteral( "ERROR:" ); m_msg = QStringLiteral( "ERROR: " );
} }
else if ( debugLevel <= LOGWARNING ) else if ( debugLevel <= LOGWARNING )
{ {
m_msg = QStringLiteral( "WARNING:" ); m_msg = QStringLiteral( "WARNING: " );
} }
} }