*Add function Unit::OutDebugInfo for debug.

--HG--
branch : trunk
This commit is contained in:
megamage
2009-08-11 10:53:29 -05:00
parent a944a0ea4b
commit 3fa3c8b098
4 changed files with 45 additions and 1 deletions

View File

@@ -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 )