diff options
| author | Stefan Boberg <[email protected]> | 2021-09-15 19:49:20 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-15 19:49:20 +0200 |
| commit | 83ccd52321a23c8f1c8a3228cbbf34b8f199a22b (patch) | |
| tree | 9cf1fb68651f616aef2fa28000e4f328ef9204d8 /zenserver-test/projectclient.cpp | |
| parent | Added GetSize/GetData functions to reduce cognitive load and bridge the gap b... (diff) | |
| parent | Tweaked logging to streamline access, and simplified setup code for new loggers (diff) | |
| download | zen-83ccd52321a23c8f1c8a3228cbbf34b8f199a22b.tar.xz zen-83ccd52321a23c8f1c8a3228cbbf34b8f199a22b.zip | |
Merge branch 'main' into cbpackage-update
Diffstat (limited to 'zenserver-test/projectclient.cpp')
| -rw-r--r-- | zenserver-test/projectclient.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/zenserver-test/projectclient.cpp b/zenserver-test/projectclient.cpp index 14d7140ec..2700ae9da 100644 --- a/zenserver-test/projectclient.cpp +++ b/zenserver-test/projectclient.cpp @@ -3,11 +3,11 @@ #include "projectclient.h" #include <zencore/compactbinary.h> +#include <zencore/logging.h> #include <zencore/sharedbuffer.h> #include <zencore/string.h> #include <zencore/zencore.h> -#include <spdlog/spdlog.h> #include <asio.hpp> #include <gsl/gsl-lite.hpp> @@ -39,7 +39,7 @@ struct ProjectClientConnection if (hPipe == INVALID_HANDLE_VALUE) { - spdlog::warn("failed while creating named pipe {}", WideToUtf8(PipeName)); + ZEN_WARN("failed while creating named pipe {}", WideToUtf8(PipeName)); throw std::system_error(GetLastError(), std::system_category(), "Failed to open named pipe '{}'"_format(WideToUtf8(PipeName))); } |