[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:
parent
215cd0d1c3
commit
f1bb70269f
@ -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: " );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user