append to log file

This commit is contained in:
john30
2015-02-10 22:04:26 +01:00
parent 885e42d623
commit 479434c8fe
+1 -1
View File
@@ -91,7 +91,7 @@ bool setLogLevel(const char* level)
bool setLogFile(const char* filename)
{
FILE* newFile = fopen(filename, "w");
FILE* newFile = fopen(filename, "a");
if (newFile == NULL)
return false;