From a25fe85b4dd4976abe147700d522feb8c8850936 Mon Sep 17 00:00:00 2001 From: orignal Date: Sun, 17 Aug 2014 07:49:29 -0400 Subject: [PATCH] print time without date --- Log.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Log.cpp b/Log.cpp index 8ab9380e..b4e7ee34 100644 --- a/Log.cpp +++ b/Log.cpp @@ -5,7 +5,7 @@ Log * g_Log = nullptr; 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(); }