Fixed missing shutdown return

This commit is contained in:
WolverinDEV 2019-11-23 22:04:10 +01:00
parent 9862c2a926
commit 0f424cbed7
1 changed files with 1 additions and 0 deletions

View File

@ -51,4 +51,5 @@ bool logger::setup(std::string& error) {
bool logger::shutdown() {
spdlog::drop_all();
return true;
}