mirror of
https://github.com/NoelFB/blah.git
synced 2025-04-18 03:46:04 +08:00
removed unnecessary logs
This commit is contained in:
parent
227fb51105
commit
30cfbf203e
@ -47,8 +47,6 @@ bool App::run(const Config* c)
|
|||||||
app_is_running = true;
|
app_is_running = true;
|
||||||
app_is_exiting = false;
|
app_is_exiting = false;
|
||||||
|
|
||||||
Log::print("Starting Up ...");
|
|
||||||
|
|
||||||
// initialize the system
|
// initialize the system
|
||||||
if (!PlatformBackend::init(&app_config))
|
if (!PlatformBackend::init(&app_config))
|
||||||
{
|
{
|
||||||
@ -148,8 +146,6 @@ bool App::run(const Config* c)
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Log::print("Shutting down ...");
|
|
||||||
|
|
||||||
// shutdown
|
// shutdown
|
||||||
if (app_config.on_shutdown != nullptr)
|
if (app_config.on_shutdown != nullptr)
|
||||||
app_config.on_shutdown();
|
app_config.on_shutdown();
|
||||||
@ -158,7 +154,6 @@ bool App::run(const Config* c)
|
|||||||
PlatformBackend::shutdown();
|
PlatformBackend::shutdown();
|
||||||
|
|
||||||
// clear static state
|
// clear static state
|
||||||
Log::print("Exited");
|
|
||||||
app_is_running = false;
|
app_is_running = false;
|
||||||
app_is_exiting = false;
|
app_is_exiting = false;
|
||||||
Time::milliseconds = 0;
|
Time::milliseconds = 0;
|
||||||
|
Loading…
Reference in New Issue
Block a user