From 3fa3c8b09897c63efa8ad55243a95ee3eff5e75e Mon Sep 17 00:00:00 2001 From: megamage Date: Tue, 11 Aug 2009 10:53:29 -0500 Subject: *Add function Unit::OutDebugInfo for debug. --HG-- branch : trunk --- src/shared/Log.cpp | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/shared/Log.cpp') diff --git a/src/shared/Log.cpp b/src/shared/Log.cpp index 8dc23066245..117eabffb4a 100644 --- a/src/shared/Log.cpp +++ b/src/shared/Log.cpp @@ -702,6 +702,22 @@ void Log::outDebug( const char * str, ... ) fflush(stdout); } +void Log::outStringInLine( const char * str, ... ) +{ + if( !str ) + return; + + UTF8PRINTF(stdout,str,); + + if(logfile) + { + va_list ap; + va_start(ap, str); + vfprintf(logfile, str, ap); + va_end(ap); + } +} + void Log::outCommand( uint32 account, const char * str, ... ) { if( !str ) -- cgit v1.2.3