Skip to content
Snippets Groups Projects
Commit 59b46e71 authored by Mark Woolrich's avatar Mark Woolrich
Browse files

changed logfile ofstream open from ios::out to ios::app

parent ab43037f
No related branches found
No related tags found
No related merge requests found
......@@ -196,7 +196,7 @@ namespace Utilities{
logfilename = plogfilename;
// setup logfile
logfileout.open((dir + "/" + logfilename).c_str(), ios::out);
logfileout.open((dir + "/" + logfilename).c_str(), ios::app);
if(logfileout.bad())
{
throw Exception(string(string("Unable to setup logfile ")+logfilename+string(" in directory ")+dir).c_str());
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment