X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flog.cpp;h=97f07338c551697633afb520286f60f4672a8db6;hb=8ba4c4438d796f83851cd53914dff928193ed658;hp=c39a0b322ce200aff64f9303849510a9aadc00c2;hpb=d22f243fc585a46e4c29d00bd32727d9f9f4055c;p=thunder diff --git a/src/log.cpp b/src/log.cpp index c39a0b3..97f0733 100644 --- a/src/log.cpp +++ b/src/log.cpp @@ -19,7 +19,6 @@ static FILE * logStream = NULL; static uint32_t logSize = 0; - bool InitLog(const char * path) { logStream = fopen(path, "wrt"); @@ -30,14 +29,12 @@ bool InitLog(const char * path) return true; } - void LogDone(void) { if (logStream) fclose(logStream); } - // // 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! @@ -62,4 +59,3 @@ void WriteLog(const char * text, ...) va_end(arg); fflush(logStream); // Make sure that text is written! } -