mirror of
https://github.com/parchlinux/calamares.git
synced 2025-07-02 03:45:38 -04:00
[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
1 changed files with 2 additions and 2 deletions
|
@ -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: " );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue