Removed utf8ToNative from log message and exception message.

This commit is contained in:
Tatsuhiro Tsujikawa 2011-08-08 21:46:10 +09:00
parent 7368c9c9d8
commit 02307cee0a
25 changed files with 91 additions and 125 deletions

View file

@ -77,7 +77,7 @@ void Logger::openFile(const std::string& filename)
closeFile();
fpp_ = new BufferedFile(filename, BufferedFile::APPEND);
if(!fpp_) {
throw DL_ABORT_EX(fmt(EX_FILE_OPEN, utf8ToNative(filename).c_str(), "n/a"));
throw DL_ABORT_EX(fmt(EX_FILE_OPEN, filename.c_str(), "n/a"));
}
}