diff options
| author | Stefan Boberg <[email protected]> | 2021-09-08 19:26:04 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-08 19:26:04 +0200 |
| commit | 2597b265b93803e710a461446250fd1ac2a073d0 (patch) | |
| tree | 816d4c6672f5fd0853d1d2437881b4ad27e0845f /zencore/httpserver.cpp | |
| parent | Mesh should not default to on (diff) | |
| download | zen-2597b265b93803e710a461446250fd1ac2a073d0.tar.xz zen-2597b265b93803e710a461446250fd1ac2a073d0.zip | |
printf -> zencore logging
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 |