X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flog.cpp;h=15b2384d0099f7e9b2770734ce8ce60a1835b5a3;hb=a0f9dd93d237ed4d73e92fffc0f877f55ad14fdf;hp=ce660e8a0cf742fdf189f05d0ddfa4308fc89030;hpb=6c19e4098a43c47f8cd1824902f7335e124b834f;p=virtualjaguar diff --git a/src/log.cpp b/src/log.cpp index ce660e8..15b2384 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -4,6 +4,16 @@ // Originally by David Raingeard (Cal2) // GCC/SDL port by Niels Wagenaar (Linux/WIN32) and Caz (BeOS) // Cleanups/new stuff by James L. Hammons +// (C) 2010 Underground Software +// +// JLH = James L. Hammons +// +// Who When What +// --- ---------- ------------------------------------------------------------- +// 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. ;-) // #include "log.h" @@ -17,7 +27,7 @@ static FILE * log_stream = NULL; static uint32 logSize = 0; -int log_init(const char * path) +int LogInit(const char * path) { log_stream = fopen(path, "wrt"); @@ -27,14 +37,15 @@ int log_init(const char * path) return 1; } -FILE * log_get(void) +FILE * LogGet(void) { return log_stream; } -void log_done(void) +void LogDone(void) { - fclose(log_stream); + if (log_stream != NULL) + fclose(log_stream); } // @@ -44,15 +55,23 @@ void log_done(void) void WriteLog(const char * text, ...) { va_list arg; - va_start(arg, text); + + if (log_stream == NULL) + { + va_end(arg); + return; + } + logSize += vfprintf(log_stream, text, arg); if (logSize > MAX_LOG_SIZE) { fflush(log_stream); fclose(log_stream); - exit(1); + // Instead of dumping out, we just close the file and ignore any more output. + log_stream = NULL; +// exit(1); }//*/ va_end(arg);