diff options
| author | Stefan Boberg <[email protected]> | 2021-09-09 11:03:49 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-09 11:03:49 +0200 |
| commit | 090d89eb62d660d6c854a5f8bc44293004d22462 (patch) | |
| tree | 6c6722ad99c0c2a0c764eeec7ecb76a39ffcce1c /zencore/httpserver.cpp | |
| parent | Delete .zenroot (no longer useful) (diff) | |
| parent | printf -> zencore logging (diff) | |
| download | zen-090d89eb62d660d6c854a5f8bc44293004d22462.tar.xz zen-090d89eb62d660d6c854a5f8bc44293004d22462.zip | |
Merge branch 'main' of https://github.com/EpicGames/zen
Diffstat (limited to 'zencore/httpserver.cpp')
| -rw-r--r-- | zencore/httpserver.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/zencore/httpserver.cpp b/zencore/httpserver.cpp index aa7d96772..d7e6a875f 100644 --- a/zencore/httpserver.cpp +++ b/zencore/httpserver.cpp @@ -13,6 +13,7 @@ #include <zencore/compactbinary.h> #include <zencore/compactbinarypackage.h> #include <zencore/iobuffer.h> +#include <zencore/logging.h> #include <zencore/refcount.h> #include <zencore/stream.h> #include <zencore/string.h> @@ -965,7 +966,7 @@ HttpSysServer::Run(bool TestMode) { if (TestMode == false) { - printf("Zen Server running. Press ESC or Q to quit\n"); + zen::logging::ConsoleLog().info("Zen Server running. Press ESC or Q to quit"); } do |