1
0
mirror of https://github.com/PurpleI2P/i2pd.git synced 2025-01-22 04:04:16 +00:00

print time without date

This commit is contained in:
orignal 2014-08-17 07:49:29 -04:00
parent 7b0df27591
commit a25fe85b4d

View File

@ -5,7 +5,7 @@ Log * g_Log = nullptr;
void LogMsg::Process() void LogMsg::Process()
{ {
output << boost::posix_time::second_clock::local_time() << " - "; output << boost::posix_time::second_clock::local_time().time_of_day () << " - ";
output << s.str(); output << s.str();
} }