diff options
author | root@trinity <none@none> | 2009-09-16 13:16:42 -0600 |
---|---|---|
committer | root@trinity <none@none> | 2009-09-16 13:16:42 -0600 |
commit | b07aba2513f0616aa7bee6a05c7cfa62b71aa0ee (patch) | |
tree | abfb846f601edab0d2650da95b553b1db25f81d0 /src/game/SpellMgr.cpp | |
parent | 00409c67cf9537a218e8786e9a7e3fbf1df0d73b (diff) |
* Changed the logging for missing spell_script_target / spell_script_position
* entries in DB to "debug" level.
* Set the default level for DBLogLevel in trinitycore.conf.dist to 2 "detail"
--HG--
branch : trunk
Diffstat (limited to 'src/game/SpellMgr.cpp')
-rw-r--r-- | src/game/SpellMgr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/SpellMgr.cpp b/src/game/SpellMgr.cpp index b82343111a3..0500432f3e3 100644 --- a/src/game/SpellMgr.cpp +++ b/src/game/SpellMgr.cpp @@ -1233,7 +1233,7 @@ void SpellMgr::LoadSpellTargetPositions() if(found) { if(!spellmgr.GetSpellTargetPosition(i)) - sLog.outDetail("Spell (ID: %u) does not have record in `spell_target_position`", i); + sLog.outDebug("Spell (ID: %u) does not have record in `spell_target_position`", i); } } @@ -2057,7 +2057,7 @@ void SpellMgr::LoadSpellScriptTarget() { SpellScriptTargetBounds bounds = spellmgr.GetSpellScriptTargetBounds(i); if(bounds.first==bounds.second) - sLog.outDetail("Spell (ID: %u) does not have record in `spell_script_target`", i); + sLog.outDebug("Spell (ID: %u) does not have record in `spell_script_target`", i); } } |