diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-03-29 19:00:25 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-03-29 19:00:25 +0200 |
commit | 5269fec9106327db4ada313701ceae67d833e736 (patch) | |
tree | 30698b7aa8227af14addcfe214a08a7b0983d05d /lib/Log.cpp | |
parent | 4fa485c237e48a2edb8c804b2abbdbb7e033dfc9 (diff) | |
download | ODR-SourceCompanion-5269fec9106327db4ada313701ceae67d833e736.tar.gz ODR-SourceCompanion-5269fec9106327db4ada313701ceae67d833e736.tar.bz2 ODR-SourceCompanion-5269fec9106327db4ada313701ceae67d833e736.zip |
Common: log timestamps and socket changes
Diffstat (limited to 'lib/Log.cpp')
-rw-r--r-- | lib/Log.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Log.cpp b/lib/Log.cpp index abbd69a..089e822 100644 --- a/lib/Log.cpp +++ b/lib/Log.cpp @@ -25,6 +25,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <iomanip> #include <list> #include <cstdarg> #include <cinttypes> @@ -119,7 +120,9 @@ void Logger::io_process() } if (m.level != log_level_t::trace) { - std::cerr << levels_as_str[m.level] << " " << message << std::endl; + using namespace std::chrono; + time_t t = system_clock::to_time_t(system_clock::now()); + cerr << put_time(std::gmtime(&t), "%Y-%m-%dZ%H:%M:%S") << " " << levels_as_str[m.level] << " " << message << endl; } } } |