Fix logging.

This commit is contained in:
levlam 2022-11-23 01:00:29 +03:00
parent 8a73d14c0f
commit 62d5ffcd86
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ class TQueueImpl final : public TQueue {
auto clear_time = Time::now() - start_time;
if (clear_time > 0.1) {
LOG(WARNING) << "Cleared " << (size - keep_count) << " TQueue events with total size "
<< (total_event_length - q.total_event_length) << " in " << time << " seconds";
<< (total_event_length - q.total_event_length) << " in " << clear_time << " seconds";
}
}