Merge pull request #267 from ricardoianelli/master

Rework on init/exit log messages.
This commit is contained in:
Henrique Santiago
2013-02-08 21:03:08 -08:00
4 changed files with 13 additions and 8 deletions

View File

@@ -153,7 +153,6 @@ void Application::poll()
void Application::exit()
{
m_stopping = true;
g_logger.info("Exiting application..");
}
void Application::close()

View File

@@ -129,7 +129,5 @@ void Logger::setLogFile(const std::string& file)
g_logger.error(stdext::format("Unable to save log to '%s'", file));
return;
}
m_outFile << "\n== application started at " << stdext::date_time_string() << std::endl;
m_outFile.flush();
}