diff options
Diffstat (limited to 'src/shared/Log.cpp')
-rw-r--r-- | src/shared/Log.cpp | 16 |
1 files changed, 16 insertions, 0 deletions
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 ) |