mirror of
https://github.com/FunKey-Project/RetroFE.git
synced 2026-04-02 18:25:30 +02:00
Renamed Logger StartLogFile and StopLogFile to Initialie to DeInitialize
This commit is contained in:
@@ -27,7 +27,7 @@ int main(int argc, char *argv[])
|
||||
// set the log file to write to
|
||||
std::string logFile = Configuration::GetAbsolutePath() + "/Log.txt";
|
||||
|
||||
if(!Logger::StartLogFile(logFile))
|
||||
if(!Logger::Initialize(logFile))
|
||||
{
|
||||
Logger::Write(Logger::ZONE_ERROR, "RetroFE", "Could not open \"" + logFile + "\" for writing");
|
||||
}
|
||||
@@ -72,7 +72,7 @@ int main(int argc, char *argv[])
|
||||
p.DeInitialize();
|
||||
}
|
||||
|
||||
Logger::CloseLogFile();
|
||||
Logger::DeInitialize();
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user