diff --git a/src/core/core.cpp b/src/core/core.cpp index b44596c..0b8f1d5 100644 --- a/src/core/core.cpp +++ b/src/core/core.cpp @@ -207,12 +207,11 @@ namespace lunarium mpInput->Initialize(mpWindow); // GUI - mGUI.Initialize(mpWindow); - result = LogGui::GetInstance().Initialize(); + result = mGUI.Initialize(mpWindow); if (Failed(result)) { Logger::Log(LogCategory::CORE, LogLevel::WARNING, - "Could not initialized the debug log window: %s", result.Description); + "Could not initialized the main GUI system: %s", result.Description); } // SCRIPTING @@ -307,7 +306,7 @@ namespace lunarium std::string command; if (LuaConsole::GetInstance().GetNewCommand(command)) { - Logger::Log(LogCategory::CORE, LogLevel::INFO, "New LUA command: %s", command.c_str()); + // Logger::Log(LogCategory::CORE, LogLevel::INFO, "New LUA command: %s", command.c_str()); OpRes result = ScriptManager::RunScript(command.c_str()); // NOTE: Ignoring script result }