X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flog.cpp;h=e4d410673d9bea7f8e4f3ea215980e31636c0567;hb=432a82c9d473fc33c4fe6b9d2db60db0d84c6612;hp=282898cc199c0fc090a841e766b8562458e64a13;hpb=67a5f1a40072983cf87ae2093ca95c271d14e706;p=virtualjaguar diff --git a/src/log.cpp b/src/log.cpp index 282898c..e4d4106 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -1,14 +1,18 @@ // // Log handler // -// by cal2 +// by Cal2 // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS) // Cleanups/new stuff by James L. Hammons // +#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) { @@ -39,7 +43,15 @@ void WriteLog(const char * text, ...) 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! }