aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Logging/Log.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/server/shared/Logging/Log.h')
-rwxr-xr-xsrc/server/shared/Logging/Log.h44
1 files changed, 22 insertions, 22 deletions
diff --git a/src/server/shared/Logging/Log.h b/src/server/shared/Logging/Log.h
index cbaa2d80451..e32ea7765a9 100755
--- a/src/server/shared/Logging/Log.h
+++ b/src/server/shared/Logging/Log.h
@@ -31,7 +31,7 @@ enum DebugLogFilters
LOG_FILTER_PETS = 0x00000002,
LOG_FILTER_VEHICLES = 0x00000004,
LOG_FILTER_TSCR = 0x00000008, // C++ AI, instance scripts, etc.
- LOG_FILTER_DATABASE_AI = 0x08000010, // SmartAI, EventAI, CreatureAI
+ LOG_FILTER_DATABASE_AI = 0x00000010, // SmartAI, EventAI, CreatureAI
LOG_FILTER_MAPSCRIPTS = 0x00000020,
LOG_FILTER_NETWORKIO = 0x00000040, // Anything packet/netcode related
LOG_FILTER_SPELLS_AURAS = 0x00000080,
@@ -118,28 +118,28 @@ class Log
void SetColor(bool stdout_stream, ColorTypes color);
void ResetColor(bool stdout_stream);
- void outErrorST( const char * err, ... ) ATTR_PRINTF(2, 3);
- void outDB( LogTypes type, const char * str );
- void outString( const char * str, ... ) ATTR_PRINTF(2, 3);
- void outString( );
- void outStringInLine( const char * str, ... ) ATTR_PRINTF(2, 3);
- void outError( const char * err, ... ) ATTR_PRINTF(2, 3);
- void outCrash( const char * err, ... ) ATTR_PRINTF(2, 3);
- void outBasic( const char * str, ... ) ATTR_PRINTF(2, 3);
- void outDetail( const char * str, ... ) ATTR_PRINTF(2, 3);
- void outSQLDev( const char * str, ... ) ATTR_PRINTF(2, 3);
+ void outErrorST(const char * err, ...) ATTR_PRINTF(2, 3);
+ void outDB(LogTypes type, const char * str);
+ void outString(const char * str, ...) ATTR_PRINTF(2, 3);
+ void outString();
+ void outStringInLine(const char * str, ...) ATTR_PRINTF(2, 3);
+ void outError(const char * err, ...) ATTR_PRINTF(2, 3);
+ void outCrash(const char * err, ...) ATTR_PRINTF(2, 3);
+ void outBasic(const char * str, ...) ATTR_PRINTF(2, 3);
+ void outDetail(const char * str, ...) ATTR_PRINTF(2, 3);
+ void outSQLDev(const char * str, ...) ATTR_PRINTF(2, 3);
void outDebug(DebugLogFilters f, const char* str, ...) ATTR_PRINTF(3, 4);
- void outStaticDebug( const char * str, ... ) ATTR_PRINTF(2, 3);
- void outDebugInLine( const char * str, ... ) ATTR_PRINTF(2, 3);
- void outErrorDb( const char * str, ... ) ATTR_PRINTF(2, 3);
- void outChar( const char * str, ... ) ATTR_PRINTF(2, 3);
- void outCommand( uint32 account, const char * str, ...) ATTR_PRINTF(3, 4);
- void outRemote( const char * str, ... ) ATTR_PRINTF(2, 3);
- void outChat( const char * str, ... ) ATTR_PRINTF(2, 3);
- void outArena( const char * str, ... ) ATTR_PRINTF(2, 3);
- void outSQLDriver( const char* str, ... ) ATTR_PRINTF(2, 3);
- void outWarden( const char * str, ... ) ATTR_PRINTF(2, 3);
- void outCharDump( const char * str, uint32 account_id, uint32 guid, const char * name );
+ void outStaticDebug(const char * str, ...) ATTR_PRINTF(2, 3);
+ void outDebugInLine(const char * str, ...) ATTR_PRINTF(2, 3);
+ void outErrorDb(const char * str, ...) ATTR_PRINTF(2, 3);
+ void outChar(const char * str, ...) ATTR_PRINTF(2, 3);
+ void outCommand(uint32 account, const char * str, ...) ATTR_PRINTF(3, 4);
+ void outRemote(const char * str, ...) ATTR_PRINTF(2, 3);
+ void outChat(const char * str, ...) ATTR_PRINTF(2, 3);
+ void outArena(const char * str, ...) ATTR_PRINTF(2, 3);
+ void outSQLDriver(const char* str, ...) ATTR_PRINTF(2, 3);
+ void outWarden(const char * str, ...) ATTR_PRINTF(2, 3);
+ void outCharDump(const char * str, uint32 account_id, uint32 guid, const char * name);
void outOpCode(uint32 op, const char * name, bool smsg = true);
static void outTimestamp(FILE* file);