Unverified Commit b1be7b9f authored by Gabi Melman's avatar Gabi Melman Committed by GitHub

async log: increased sleep to to 500ms the worker loop

parent 2f81ff7f
......@@ -378,8 +378,8 @@ inline void spdlog::details::async_log_helper::sleep_or_yield(const spdlog::log_
if (time_since_op <= milliseconds(200))
return sleep_for(milliseconds(20));
// sleep for 200 ms
return sleep_for(milliseconds(200));
// sleep for 500 ms
return sleep_for(milliseconds(500));
}
// wait for the queue to be empty
......
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