Skip to content

Commit

Permalink
Consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
praydog committed Jun 10, 2023
1 parent 5ba2f7d commit 4dfe80c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions shared/sdk/ConsoleManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,16 @@ FConsoleManager* FConsoleManager::get() {
const auto now = std::chrono::steady_clock::now();

for (const auto& candidate : candidates) {
spdlog::info("Trying to find IConsoleManager with candidate: {}", utility::narrow(candidate));
SPDLOG_INFO("Trying to find IConsoleManager with candidate: {}", utility::narrow(candidate));
auto result = detail::try_find_console_manager(candidate);

if (result) {
spdlog::info("Took {}ms to search through all candidates", std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now() - now).count());
SPDLOG_INFO("Took {}ms to search through all candidates", std::chrono::duration_cast<std::chrono::milliseconds>(std::chrono::steady_clock::now() - now).count());
return result;
}
}

spdlog::error("Failed to find IConsoleManager");
SPDLOG_ERROR("Failed to find IConsoleManager");

return nullptr;
}();
Expand Down

0 comments on commit 4dfe80c

Please sign in to comment.