Commit 03e8c0f4 authored by gabime's avatar gabime

Fix issue #1219

parent b6388a15
...@@ -878,7 +878,7 @@ public: ...@@ -878,7 +878,7 @@ public:
void format(const details::log_msg &msg, const std::tm &, memory_buf_t &dest) override void format(const details::log_msg &msg, const std::tm &, memory_buf_t &dest) override
{ {
auto delta = msg.time - last_message_time_; auto delta = std::max(msg.time - last_message_time_, log_clock::duration::zero());
auto delta_units = std::chrono::duration_cast<DurationUnits>(delta); auto delta_units = std::chrono::duration_cast<DurationUnits>(delta);
last_message_time_ = msg.time; last_message_time_ = msg.time;
ScopedPadder p(6, padinfo_, dest); ScopedPadder p(6, padinfo_, dest);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment