X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flog.cpp;h=cd968ee36f260651ef597bd7b720fafe6aec215b;hb=135a0c52a2bcbcc37192c61801de6e9c80aeebff;hp=173025178d9eef037cc2cc06255e5ef97d06ef3d;hpb=6283b73b183c64962f95d0e3750456de48468854;p=virtualjaguar diff --git a/src/log.cpp b/src/log.cpp index 1730251..cd968ee 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -34,9 +34,13 @@ 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);