Skip to content

Commit

Permalink
fix: revert global logger name change
Browse files Browse the repository at this point in the history
  • Loading branch information
ThirdEyeSqueegee committed Sep 14, 2023
1 parent 9f38783 commit b0fe917
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CommonLibSF/src/SFSE/Logger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ namespace SFSE
std::make_shared<spdlog::sinks::msvc_sink_mt>()
};

auto logger = std::make_shared<spdlog::logger>("global", sinks.begin(), sinks.end());
auto logger = std::make_shared<spdlog::logger>("Global", sinks.begin(), sinks.end());
#ifndef NDEBUG
logger->set_level(spdlog::level::debug);
logger->flush_on(spdlog::level::debug);
Expand Down

0 comments on commit b0fe917

Please sign in to comment.