Definition at line 268 of file Logger.h. References LogString(), and mPLog. Referenced by ClosePartLog(). 00269 { 00270 std::ostringstream s; 00271 s << "Writing partial log to file " << filename; 00272 LogString(s.str()); 00273 std::fstream f(filename.c_str(), std::ios::out); 00274 f << mPLog->str(); 00275 f << std::endl; 00276 f.close(); 00277 delete mPLog; 00278 mPLog = 0; 00279 }
Here is the call graph for this function:
|