Fix one more msg.time.
				
					
				
			This commit is contained in:
		@@ -68,12 +68,13 @@ protected:
 | 
				
			|||||||
    void sink_it_(const details::log_msg &msg) override
 | 
					    void sink_it_(const details::log_msg &msg) override
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
#ifdef SPDLOG_NO_DATETIME
 | 
					#ifdef SPDLOG_NO_DATETIME
 | 
				
			||||||
        if (log_clock::now() >= rotation_tp_)
 | 
					        auto time = log_clock::now();
 | 
				
			||||||
#else
 | 
					#else
 | 
				
			||||||
        if (msg.time >= rotation_tp_)
 | 
					        auto time = msg.time;
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 | 
					        if (time >= rotation_tp_)
 | 
				
			||||||
        {
 | 
					        {
 | 
				
			||||||
            file_helper_.open(FileNameCalc::calc_filename(base_filename_, now_tm(msg.time)), truncate_);
 | 
					            file_helper_.open(FileNameCalc::calc_filename(base_filename_, now_tm(time)), truncate_);
 | 
				
			||||||
            rotation_tp_ = next_rotation_tp_();
 | 
					            rotation_tp_ = next_rotation_tp_();
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
        fmt::memory_buffer formatted;
 | 
					        fmt::memory_buffer formatted;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user