From 1e922ca3e85be4cbad399d6beef9e769afe06ef5 Mon Sep 17 00:00:00 2001 From: bumpsoo Date: Thu, 5 Feb 2026 11:30:05 +0000 Subject: [PATCH] =?UTF-8?q?fix:=20db=20=EC=97=B0=EA=B2=B0=20=EC=8B=A4?= =?UTF-8?q?=ED=8C=A8=20=EC=8B=9C=20=EC=A2=85=EB=A3=8C=EB=90=98=EA=B2=8C=20?= =?UTF-8?q?=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- server/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/main.cpp b/server/main.cpp index ffdd3ff..d1f8e07 100644 --- a/server/main.cpp +++ b/server/main.cpp @@ -15,7 +15,8 @@ int main() { if (!DatabaseManager::GetInstance().Init(main_context, "127.0.0.1", 33306, "root", "root_password", "socket_server")) { - Logger::Log("경고: 초기 DB 연결에 실패했습니다. (서버는 계속 실행됨)"); + Logger::Log("DB 연결에 실패했습니다."); + return 1; } NetworkService server(port, threadCount);