aboutsummaryrefslogtreecommitdiff
path: root/zenserver/config.cpp
diff options
context:
space:
mode:
authorStefan Boberg <[email protected]>2021-09-08 19:10:59 +0200
committerStefan Boberg <[email protected]>2021-09-08 19:21:21 +0200
commite44740f9bf2846e69e8c01d7b1f7a7b8545af6b6 (patch)
treefaba4bdd2810150d5c9e991998d2b55cb5c8c1be /zenserver/config.cpp
parentMerge branch 'main' of https://github.com/EpicGames/zen (diff)
downloadzen-e44740f9bf2846e69e8c01d7b1f7a7b8545af6b6.tar.xz
zen-e44740f9bf2846e69e8c01d7b1f7a7b8545af6b6.zip
Moved a bunch of logging code into zencore
Diffstat (limited to 'zenserver/config.cpp')
-rw-r--r--zenserver/config.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/zenserver/config.cpp b/zenserver/config.cpp
index 904e613a4..665c567cc 100644
--- a/zenserver/config.cpp
+++ b/zenserver/config.cpp
@@ -178,14 +178,14 @@ ParseGlobalCliOptions(int argc, char* argv[], ZenServerOptions& GlobalOptions, Z
if (result.count("help"))
{
- ConsoleLog().info("{}", options.help());
+ zen::logging::ConsoleLog().info("{}", options.help());
exit(0);
}
}
catch (cxxopts::OptionParseException& e)
{
- ConsoleLog().error("Error parsing zenserver arguments: {}\n\n{}", e.what(), options.help());
+ zen::logging::ConsoleLog().error("Error parsing zenserver arguments: {}\n\n{}", e.what(), options.help());
throw;
}