summaryrefslogtreecommitdiff
path: root/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'log.c')
-rwxr-xr-x[-rw-r--r--]log.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/log.c b/log.c
index 9c0b93a..e409f4e 100644..100755
--- a/log.c
+++ b/log.c
@@ -49,7 +49,7 @@ int Log::init(string fileName) {
if (fileName != "") {
mLogFile = new ofstream();
- mLogFile->open(fileName.c_str(), ios::out );
+ mLogFile->open(fileName.c_str(), ios::out); // | ios::app
*mLogFile << "Log Created: " << timebuf << endl;
}
else