summaryrefslogtreecommitdiff
path: root/src/server/apps/authserver/Main.cpp
diff options
context:
space:
mode:
authorQuentin Dawans <github@ovv.wtf>2025-04-26 01:20:37 +0200
committerGitHub <noreply@github.com>2025-04-25 20:20:37 -0300
commitb8b5a4ea1c969c1a5dd09c42900f0010a8553a53 (patch)
tree3a1a7308813a67a03ed4c242027d6ec6bbe75c9b /src/server/apps/authserver/Main.cpp
parentf35876968fcece87e903d6128bbe6b1e7aefa655 (diff)
chore(Core/Auth): align mysql ping log level and name to worldserver (#21986)
Diffstat (limited to 'src/server/apps/authserver/Main.cpp')
-rw-r--r--src/server/apps/authserver/Main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/apps/authserver/Main.cpp b/src/server/apps/authserver/Main.cpp
index 903a12134d..e9ed0119f2 100644
--- a/src/server/apps/authserver/Main.cpp
+++ b/src/server/apps/authserver/Main.cpp
@@ -246,7 +246,7 @@ void KeepDatabaseAliveHandler(std::weak_ptr<boost::asio::steady_timer> dbPingTim
{
if (std::shared_ptr<boost::asio::steady_timer> 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));