aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/spdlog/tests/test_systemd.cpp
diff options
context:
space:
mode:
authorLiam Mitchell <[email protected]>2026-03-09 19:06:36 -0700
committerLiam Mitchell <[email protected]>2026-03-09 19:06:36 -0700
commitd1abc50ee9d4fb72efc646e17decafea741caa34 (patch)
treee4288e00f2f7ca0391b83d986efcb69d3ba66a83 /thirdparty/spdlog/tests/test_systemd.cpp
parentAllow requests with invalid content-types unless specified in command line or... (diff)
parentupdated chunk–block analyser (#818) (diff)
downloadzen-d1abc50ee9d4fb72efc646e17decafea741caa34.tar.xz
zen-d1abc50ee9d4fb72efc646e17decafea741caa34.zip
Merge branch 'main' into lm/restrict-content-type
Diffstat (limited to 'thirdparty/spdlog/tests/test_systemd.cpp')
-rw-r--r--thirdparty/spdlog/tests/test_systemd.cpp14
1 files changed, 0 insertions, 14 deletions
diff --git a/thirdparty/spdlog/tests/test_systemd.cpp b/thirdparty/spdlog/tests/test_systemd.cpp
deleted file mode 100644
index e36365741..000000000
--- a/thirdparty/spdlog/tests/test_systemd.cpp
+++ /dev/null
@@ -1,14 +0,0 @@
-#include "includes.h"
-#include "spdlog/sinks/systemd_sink.h"
-
-TEST_CASE("systemd", "[all]") {
- auto systemd_sink = std::make_shared<spdlog::sinks::systemd_sink_st>();
- spdlog::logger logger("spdlog_systemd_test", systemd_sink);
- logger.set_level(spdlog::level::trace);
- logger.trace("test spdlog trace");
- logger.debug("test spdlog debug");
- SPDLOG_LOGGER_INFO((&logger), "test spdlog info");
- SPDLOG_LOGGER_WARN((&logger), "test spdlog warn");
- SPDLOG_LOGGER_ERROR((&logger), "test spdlog error");
- SPDLOG_LOGGER_CRITICAL((&logger), "test spdlog critical");
-}