From b92dc1cda3576ffc4c85347b0e8449d5adb87ef6 Mon Sep 17 00:00:00 2001 From: CoolPuppyKid <68360803+CoolPuppyKid@users.noreply.github.com> Date: Tue, 10 Dec 2024 17:54:19 -0600 Subject: [PATCH] Added Log That Says The Port (#5593) * added logging that says the port * fixed my little oversight * removed useless level.dat --- src/Server.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Server.cpp b/src/Server.cpp index a3953db5a..0b0ed748d 100644 --- a/src/Server.cpp +++ b/src/Server.cpp @@ -4,6 +4,7 @@ #include "Server.h" #include "ClientHandle.h" +#include "LoggerSimple.h" #include "Mobs/Monster.h" #include "Root.h" #include "World.h" @@ -410,6 +411,7 @@ bool cServer::Start(void) auto Handle = cNetwork::Listen(PortNum, std::make_shared(*this, PortNum)); if (Handle->IsListening()) { + LOGINFO("Server Running On Port: %s", port.c_str()); m_ServerHandles.push_back(Handle); } } // for port - Ports[]