aboutsummaryrefslogtreecommitdiff
path: root/src/shared/Log.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/shared/Log.cpp')
-rw-r--r--src/shared/Log.cpp12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/shared/Log.cpp b/src/shared/Log.cpp
index 401394af1a5..e79ea12933d 100644
--- a/src/shared/Log.cpp
+++ b/src/shared/Log.cpp
@@ -404,6 +404,18 @@ void Log::outString( const char * str, ... )
fflush(stdout);
}
+void Log::outString( )
+{
+ printf( "\n" );
+ if(logfile)
+ {
+ outTimestamp(logfile);
+ fprintf(logfile, "\n" );
+ fflush(logfile);
+ }
+ fflush(stdout);
+}
+
void Log::outCrash( const char * err, ... )
{
if( !err )