aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-08-15Misc: CRLF to LF, whitespace cleanup and tabs to spacesNay
2012-08-15Core/Logging: Added documentation about this systemSpp
- Restored old CharDump (LOG_FILTER_PLAYER_DUMP) but disabled by default. - "%s" is now used to set dynamic file names, only used by GM commands and Player dump
2012-08-15Core/Logging: Fix crash on authserver shutdownSpp
Closes #7365 Closes #7325
2012-08-15Core/Scripts: Missing change from previous commitVincent-Michael
2012-08-14Core/Scripts: Fix uninitialized variable in boss_akilzonVincent-Michael
2012-08-14Core/Scripts: Fixed more uninitialized variablesVincent-Michael
2012-08-14DB/Creature: Add Missing spawn for Mistcaller Soo-ganVincent-Michael
2012-08-14Merge pull request #7398 from Vincent-Michael/onyxiaCreatureTextNay
Scripts/Onyxias Lair: Convert script_texts in creature_text
2012-08-14Scripts/Onyxias Lair: Convert script_texts in creature_textVincent-Michael
2012-08-13Merge pull request #7385 from Vincent-Michael/tocrNay
Scripts/Trial Of The Crusader: * Fix typo * Fix creature_text group id for King Varian Wrynn / Garrosh Hellscream
2012-08-14Scripts/Trial Of The Crusader:Vincent-Michael
* Fix typo * Fix creature_text group id for King Varian Wrynn / Garrosh Hellscream
2012-08-13Merge pull request #7383 from Vincent-Michael/tocrCreatureTextNay
Scripts/Trial of the Crusader: Convert script_texts in creature_text
2012-08-13Scripts/Trial of the Crusader: Convert script_texts in creature_textVincent-Michael
2012-08-13Merge pull request #7379 from Vincent-Michael/warningNay
Core: Fix warnings
2012-08-13Core: Fix warningsVincent-Michael
2012-08-13Scripts: Fixed more uninitialized variablesShauren
2012-08-12Core/Misc: Fix some mem-leaks and uninitialized variables.kaelima
2012-08-12Core/Gameobject: Properly toggle collision state when a gameobject is ↵e000
activated or spawned.
2012-08-12SQL: Rename 2 PR'ed SQL filesNay
2012-08-12Merge pull request #7360 from Vincent-Michael/MalGanisNay
Scripts/The Culling of Stratholme: Fix quest credit for Mal'Ganis
2012-08-12Scripts/Karazhan: Fixed some uninitialized variablesShauren
2012-08-12Scripts/The Culling of Stratholme: Fix quest credit for Mal'GanisVincent-Michael
2012-08-12Scripts: Fixed some unitialized variablesShauren
2012-08-12Update sql/base/auth_database.sqlNay
2012-08-11Scripts/Grizzly Hills: Fix uninitialized variable in ↵kaelima
npc_venture_co_straggler. minor cleanup
2012-08-11DB/Schema: Add primary keys to quest_poi and quest_poi_points tablesNay
2012-08-11Db/Loot: assign lootid to npcZxBiohazardZx
2012-08-10DB/NPCs: Add missing Tracker Val'zij spawnSvannon
Closes #2662
2012-08-10DB/Quests: Fix a typo in Message to Freewind Post descriptiongecko32
Closes #7340
2012-08-10DB/NPCs: Fix Barim Splithoof leather trainer gossip optionsRedSonja
Closes #2677
2012-08-10DB/Quests: Zandalar Tribe Quests Required Class/Race FIXnelegalno
Closes #7322
2012-08-10DB/Scripts: Add missing sounds to npc 29309Kinzcool
Closes #7305
2012-08-10DB/Loot: Loot fixes for Temple of Ahn'Qiraj bosesnelegalno
Closes #7335
2012-08-10DB/Conditions: Fix startup db errorsjoschiwald
Closes #7334
2012-08-09DB/SAI: Fix quest Territorial Trespassw1sht0l1v3
2012-08-09Merge pull request #6520 from Vincent-Michael/shadowstepNay
Core/Spell: Fix not using Shadowstep while rooted
2012-08-09Core/Logging: Fixed a possible crash with dynamic log file namesShauren
2012-08-09Core/Logging: Fix crash in AppenderFile deconstructor when logfile is ↵kaelima
uninitialized
2012-08-09DB/Misc: add npcflag for 0b98656b2878e1a6f644e1cd8b7745370efc488b (thx ↵ZxBiohazardZx
Vincent-Michael) DB/Loot: add missing recipe to loot
2012-08-07Core/Players: Improved alcohol handling, weeeeeeeeeeeeeeeeeShauren
Closes #7293
2012-08-07Core/Authserver: Fix logging crash at startupNay
2012-08-06Merge pull request #7285 from Vincent-Michael/CycloneNay
Core/Spells: Fix Divine Shield and Ice Block casted in Cyclone
2012-08-06Merge pull request #7290 from Faq/Debuff_1Nay
Core/Spells: Generic fix for auras with effect SPELL_EFFECT_APPLY_AREA_AURA_ENEMY
2012-08-06Update src/server/shared/Logging/AppenderDB.cppkandera
Core/Appender: fix typo
2012-08-06Core/Logging: Use prepared statements in AppenderDBSpp
2012-08-06Core/SQL: Kill core if error 1064 is triggered (error code 1064 you have an ↵Spp
error in your sql syntax). This means the sql has an build error and core fix is needed
2012-08-06Core/Logging: Implement logging to databaseSpp
2012-08-06Core/Logging: Try to simplify configuration of loggers and appendersSpp
Changed multiple lines to a simple format: - Logger.name=Type,LogLevel,Flags,AppenderList - Appender.name=Type,LogLevel,Flags,optional1,optional2 * Type = File: optional1 = File name, optiona2 = Mode * Type = Console: optional1 = Colors Created a default set of loggers and appenders. - Root logger defaults to Error, that means you will see nothing on console by default (not even loading) - You need to add the loggers to Loggers options if you want to enable them, otherwise Root logger will be used for all types Restored outSQLDriver (LOG_FILTER_SQL_DRIVER), outSQLDev (LOG_FILTER_SQL_DEV), outArena (LOG_FILTER_ARENA) and outChar (LOG_FILTER_CHARACTER) functionality by creating new types (LOG_FILTER_CHARACTER is a rename of LOG_FILTER_DELETE. Note: You need to update your config file... again (yeah sorry... trying to make it simpler)
2012-08-06Core/Logging: Reload Logging options when .reload config is usedSpp
2012-08-06Core/Logging: Move player delete logging to new type ↵Spp
LOG_FILTER_PLAYER_DELETE (34). Also add missing sql from 55ce180f28