Skip to content

Commit

Permalink
Added filename to logpath. refs #7959
Browse files Browse the repository at this point in the history
  • Loading branch information
stuartcampbell committed Sep 17, 2013
1 parent 39c5e6e commit e63d882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Code/Mantid/Framework/Kernel/src/ConfigService.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -441,7 +441,7 @@ void ConfigServiceImpl::configureLogging()
if (Poco::File(logpath).canWrite() == false)
{
// if we cannot write to the default directory then set use the system temp
logpath = Poco::Path::temp();
logpath = Poco::Path::temp() + "mantid.log";
}

m_logFilePath = logpath.toString();
Expand Down

0 comments on commit e63d882

Please sign in to comment.