From b8b5a4ea1c969c1a5dd09c42900f0010a8553a53 Mon Sep 17 00:00:00 2001 From: Quentin Dawans Date: Sat, 26 Apr 2025 01:20:37 +0200 Subject: [PATCH] chore(Core/Auth): align mysql ping log level and name to worldserver (#21986) --- src/server/apps/authserver/Main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/server/apps/authserver/Main.cpp b/src/server/apps/authserver/Main.cpp index 903a12134..e9ed0119f 100644 --- a/src/server/apps/authserver/Main.cpp +++ b/src/server/apps/authserver/Main.cpp @@ -246,7 +246,7 @@ void KeepDatabaseAliveHandler(std::weak_ptr dbPingTim { if (std::shared_ptr dbPingTimer = dbPingTimerRef.lock()) { - LOG_INFO("server.authserver", "Ping MySQL to keep connection alive"); + LOG_DEBUG("sql.driver", "Ping MySQL to keep connection alive"); LoginDatabase.KeepAlive(); dbPingTimer->expires_at(Acore::Asio::SteadyTimer::GetExpirationTime(dbPingInterval));