diff options
author | Aokromes <aokromes@gmail.com> | 2017-10-29 13:12:38 +0100 |
---|---|---|
committer | funjoker <funjoker109@gmail.com> | 2021-01-21 22:30:40 +0100 |
commit | 93552510abf2fe0db0557036143b124c4a12cbe5 (patch) | |
tree | be118f6eb326fb4e0299a77e405a2f6302e44cd6 /src/server/game/Battlegrounds/BattlegroundMgr.cpp | |
parent | 848b60bff4f7a4b623627c2730de731646738e17 (diff) |
Core/Logs: Fix more logs
the others have exit,so they continue to be error because they are critical
(cherry picked from commit b68484cfb0c371dc8de24acf533a20cb5277d2fd)
Diffstat (limited to 'src/server/game/Battlegrounds/BattlegroundMgr.cpp')
-rw-r--r-- | src/server/game/Battlegrounds/BattlegroundMgr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Battlegrounds/BattlegroundMgr.cpp b/src/server/game/Battlegrounds/BattlegroundMgr.cpp index 5bb10cc7f11..14bf6927dc2 100644 --- a/src/server/game/Battlegrounds/BattlegroundMgr.cpp +++ b/src/server/game/Battlegrounds/BattlegroundMgr.cpp @@ -475,7 +475,7 @@ void BattlegroundMgr::LoadBattlegroundTemplates() QueryResult result = WorldDatabase.Query("SELECT ID, AllianceStartLoc, HordeStartLoc, StartMaxDist, Weight, ScriptName FROM battleground_template"); if (!result) { - TC_LOG_ERROR("server.loading", ">> Loaded 0 battlegrounds. DB table `battleground_template` is empty."); + TC_LOG_INFO("server.loading", ">> Loaded 0 battlegrounds. DB table `battleground_template` is empty."); return; } |