From 30cfbf203e3ef4253fe80574b965e103ce4cfa21 Mon Sep 17 00:00:00 2001 From: Noel Berry Date: Thu, 31 Dec 2020 18:29:02 -0800 Subject: [PATCH] removed unnecessary logs --- src/core/app.cpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/core/app.cpp b/src/core/app.cpp index 3153f0f..f110572 100644 --- a/src/core/app.cpp +++ b/src/core/app.cpp @@ -47,8 +47,6 @@ bool App::run(const Config* c) app_is_running = true; app_is_exiting = false; - Log::print("Starting Up ..."); - // initialize the system if (!PlatformBackend::init(&app_config)) { @@ -148,8 +146,6 @@ bool App::run(const Config* c) } - Log::print("Shutting down ..."); - // shutdown if (app_config.on_shutdown != nullptr) app_config.on_shutdown(); @@ -158,7 +154,6 @@ bool App::run(const Config* c) PlatformBackend::shutdown(); // clear static state - Log::print("Exited"); app_is_running = false; app_is_exiting = false; Time::milliseconds = 0;