[libcalamares] [partition] Adjust to logging changes

- Use the un-paren'ed Continuation and SubEntry
This commit is contained in:
Adriaan de Groot 2019-04-15 08:15:17 -04:00
parent d72e3b3c22
commit 63b317902d
4 changed files with 22 additions and 22 deletions

View file

@ -44,7 +44,7 @@ requireString( const YAML::Node& config, const char* key )
return QString::fromStdString( v.as< std::string >() );
else
{
cWarning() << Logger::SubEntry() << "Required settings.conf key" << key << "is missing.";
cWarning() << Logger::SubEntry << "Required settings.conf key" << key << "is missing.";
return QString();
}
}
@ -58,7 +58,7 @@ requireBool( const YAML::Node& config, const char* key, bool d )
return v.as< bool >();
else
{
cWarning() << Logger::SubEntry() << "Required settings.conf key" << key << "is missing.";
cWarning() << Logger::SubEntry << "Required settings.conf key" << key << "is missing.";
return d;
}
}
@ -106,7 +106,7 @@ interpretModulesSearch( const bool debugMode, const QStringList& rawPaths, QStri
output.append( d.absolutePath() );
}
else
cDebug() << Logger::SubEntry() << "module-search entry non-existent" << path;
cDebug() << Logger::SubEntry << "module-search entry non-existent" << path;
}
}
}