diff options
| author | Stefan Boberg <[email protected]> | 2021-09-15 13:18:34 +0200 |
|---|---|---|
| committer | Stefan Boberg <[email protected]> | 2021-09-15 13:18:34 +0200 |
| commit | ab95978c10258cab130ef7e6dc3f7cb7a1bf337d (patch) | |
| tree | a6e4ca55890f5b728f69ccf8878af98ba2e31bc9 /zenserver-test/projectclient.cpp | |
| parent | Added #ifdef condition around Windows-specific exception handling (diff) | |
| parent | Cross-platform zen::GetLastError() (diff) | |
| download | zen-ab95978c10258cab130ef7e6dc3f7cb7a1bf337d.tar.xz zen-ab95978c10258cab130ef7e6dc3f7cb7a1bf337d.zip | |
Merged from main
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))); } |