]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/log.cpp
Header shuffling
[virtualjaguar] / src / log.cpp
index cd968ee36f260651ef597bd7b720fafe6aec215b..1f6b882e0bce96bfeab2235b49a4208f8fc8b74b 100644 (file)
@@ -1,14 +1,20 @@
 //
 // Log handler
 //
-// by cal2
+// Originally by David Raingeard (Cal2)
 // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS)
 // Cleanups/new stuff by James L. Hammons
 //
 
+#include <stdlib.h>
+#include <stdarg.h>
+#include "types.h"
 #include "log.h"
 
-FILE * log_stream = NULL;
+#define MAX_LOG_SIZE           10000000                                // Maximum size of log file (10 MB)
+
+static FILE * log_stream = NULL;
+static uint32 logSize = 0;
 
 int log_init(char * path)
 {
@@ -34,17 +40,20 @@ void log_done(void)
 // This logger is used mainly to ensure that text gets written to the log file
 // even if the program crashes. The performance hit is acceptable in this case!
 //
-//bool suppressOutput = true;//temporary stuff
-bool suppressOutput = false;//temporary stuff
 void WriteLog(const char * text, ...)
 {
-       if (suppressOutput)
-               return;
-
        va_list arg;
 
        va_start(arg, text);
-       vfprintf(log_stream, text, arg);
+       logSize += vfprintf(log_stream, text, arg);
+
+       if (logSize > MAX_LOG_SIZE)
+       {
+               fflush(log_stream);
+               fclose(log_stream);
+               exit(1);
+       }//*/
+
        va_end(arg);
        fflush(log_stream);                                     // Make sure that text is written!
 }