diff options
| author | Stefan Boberg <[email protected]> | 2021-09-15 10:05:25 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-15 10:05:25 +0200 |
| commit | 94b4091533b15929c381ad027d3d0cdb4be3aded (patch) | |
| tree | 799a47518657a06010c20f4597647a0724c1081e /zenserver/testing/launch.cpp | |
| parent | Added options for indicating a server is running in "dedicated" mode (diff) | |
| download | zen-94b4091533b15929c381ad027d3d0cdb4be3aded.tar.xz zen-94b4091533b15929c381ad027d3d0cdb4be3aded.zip | |
Changed so more loggers go via the zen::loggers interface
Diffstat (limited to 'zenserver/testing/launch.cpp')
| -rw-r--r-- | zenserver/testing/launch.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/zenserver/testing/launch.cpp b/zenserver/testing/launch.cpp index b031193d5..f7db9dd71 100644 --- a/zenserver/testing/launch.cpp +++ b/zenserver/testing/launch.cpp @@ -8,6 +8,7 @@ #include <zencore/fmtutils.h> #include <zencore/iobuffer.h> #include <zencore/iohash.h> +#include <zencore/logging.h> #include <zencore/windows.h> #include <zenstore/CAS.h> @@ -317,7 +318,7 @@ SandboxedJob::SpawnJob(std::filesystem::path ExePath) } HttpLaunchService::HttpLaunchService(CasStore& Store, const std::filesystem::path& SandboxBaseDir) -: m_Log("exec", begin(spdlog::default_logger()->sinks()), end(spdlog::default_logger()->sinks())) +: m_Log(logging::Get("exec")) , m_CasStore(Store) , m_SandboxPath(SandboxBaseDir) { |