77 const time_t rawTime = time(NULL);
78 strTime = ctime(&rawTime);
80 const size_t lineBreak = strTime.find(
'\n');
81 if (lineBreak != string::npos) {
82 strTime.erase(lineBreak,1);
88 tmp << strTime <<
' ' << endl;
90 tmp << strTime << endl;
96 (*masterStream) << tmp.str() << std::flush;