From f2515c86fb3e2f7718441187ddc9effe82abbfcd Mon Sep 17 00:00:00 2001 From: Yohann Ferreira Date: Wed, 20 Oct 2010 00:21:42 +0200 Subject: Fixed the append behaviour of logger::setLogFile(). Also made both servers appends on the main log at start if they aren't empty. This permits not to lose the previous logs when quicky restarting the servers. Trivial fix. --- src/utils/logger.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/utils/logger.cpp') diff --git a/src/utils/logger.cpp b/src/utils/logger.cpp index 6ad008c9..2053c9a8 100644 --- a/src/utils/logger.cpp +++ b/src/utils/logger.cpp @@ -150,7 +150,8 @@ void Logger::setLogFile(const std::string &logFile, bool append) // Open the file for output // and remove the former file contents depending on the append flag. mLogFile.open(logFile.c_str(), - append ? std::ios::ate : std::ios::trunc); + append ? std::ios::app : std::ios::trunc); + mFilename = logFile; mLastCallDate = getCurrentDate(); -- cgit v1.2.3-60-g2f50