Fix rotation condition when SPDLOG_NO_DATETIME is defined.

When SPDLOG_NO_DATETIME is defined, the rotation was never worked
because `msg.time` is always zero.
This commit is contained in:
Shintaro Seki 2019-07-01 15:57:48 +09:00
parent d8e17111b9
commit 7ffa0766b4
1 changed files with 4 additions and 1 deletions

View File

@ -67,8 +67,11 @@ public:
protected:
void sink_it_(const details::log_msg &msg) override
{
#ifdef SPDLOG_NO_DATETIME
if (log_clock::now() >= rotation_tp_)
#else
if (msg.time >= rotation_tp_)
#endif
{
file_helper_.open(FileNameCalc::calc_filename(base_filename_, now_tm(msg.time)), truncate_);
rotation_tp_ = next_rotation_tp_();