From e879d0ba5c1573f79b0ca8d5d0a4cf4bb9e5ec13 Mon Sep 17 00:00:00 2001 From: Peter Repukat Date: Mon, 10 Oct 2022 00:34:07 +0200 Subject: [PATCH] GlosSITarget: Fix logging port --- GlosSITarget/HttpServer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GlosSITarget/HttpServer.cpp b/GlosSITarget/HttpServer.cpp index 3d52343..f9c3424 100644 --- a/GlosSITarget/HttpServer.cpp +++ b/GlosSITarget/HttpServer.cpp @@ -35,7 +35,7 @@ void HttpServer::run() spdlog::error("Couldn't start http-server"); return; } - spdlog::debug("Started http-server on port"); + spdlog::debug("Started http-server on port {}", static_cast(port_)); }); }