diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-03-29 16:49:34 +0200 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2022-03-29 16:49:34 +0200 |
commit | 630a8991a90b08d124222f7a853e2c838996deff (patch) | |
tree | 6de335a548024ba6e53e46d4942f253af0c43d2e /lib/Log.cpp | |
parent | 93e517110ee27a45bfb6827ffacb4ae27fdb64e1 (diff) | |
download | dabmod-630a8991a90b08d124222f7a853e2c838996deff.tar.gz dabmod-630a8991a90b08d124222f7a853e2c838996deff.tar.bz2 dabmod-630a8991a90b08d124222f7a853e2c838996deff.zip |
Common: log timestamps, socket changes and frame_timestamp_t
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; } } } |