]> Shamusworld >> Repos - virtualjaguar/blobdiff - src/log.cpp
Tweaks for OP dumping. Hopefully removing all duplicate entries now.
[virtualjaguar] / src / log.cpp
index 87a3cf2697fee5b1c91918daf6c6d06b58341423..c6abfdc89d20c3dc802c49d4cfd657596c40f543 100644 (file)
@@ -13,7 +13,7 @@
 // JLH  01/16/2010  Created this log ;-)
 // JLH  07/11/2011  Instead of dumping out on max log file size being reached, we
 //                  now just silently ignore any more output. 10 megs ought to be
-//                  enough for anybody. ;-)
+//                  enough for anybody. ;-) Except when it isn't. :-P
 //
 
 #include "log.h"
@@ -22,8 +22,7 @@
 #include <stdarg.h>
 #include "types.h"
 
-//temp, 1GB, remove 2 zeroes
-#define MAX_LOG_SIZE           1000000000                              // Maximum size of log file (10 MB)
+#define MAX_LOG_SIZE           10000000                                // Maximum size of log file (10 MB)
 
 static FILE * log_stream = NULL;
 static uint32 logSize = 0;