Fix log message being output incorrectly based on log level.

This commit is contained in:
Stephen Anthony 2025-07-28 19:46:03 -02:30
parent d2cb9d3011
commit 211b4902d5
2 changed files with 2 additions and 1 deletions

View File

@ -235,7 +235,6 @@ int main(int ac, char* av[])
// Create the full OSystem after the settings, since settings are
// probably needed for defaults
Logger::log("Creating the OSystem ...");
if(!theOSystem->initialize(globalOpts))
{
Logger::error("ERROR: Couldn't create OSystem");

View File

@ -122,6 +122,8 @@ bool OSystem::initialize(const Settings::Options& options)
{
loadConfig(options);
Logger::debug("Creating the OSystem ...");
ostringstream buf;
buf << "Stella " << STELLA_VERSION << '\n'
<< " Features: " << myFeatures << '\n'