In the first screenshot, a status note is logged every second. I guess the second screenshot speaks for itself. This is very rare.
I've noticed some other changes. I think it used to be that a request was logged when it finished. Now a request is logged in the slot it started in. This can cause requests to be swallowed when using continues logging. Let me explain.
This is with continues logging enabled.
00:50:00 10ms /
00:30:00 10ms /
00:10:00 10ms /
00:00:00 10ms /
This is when you refresh the log page.
00:50:00 10ms /
00:30:00 10ms /
00:20:00 20s /www/
00:10:00 10ms /
00:00:00 10ms /
Suddenly another request appears. So what happened here. At 00:20:00, request /www/ started processing, but took 20s and thus only finished at 00:40:00, at which point another request was already logged. This causes request /www/ not to be logged in continuous logging.
I think this is how it used to be.
00:50:00 10ms /
00:40:00 20s /www/
00:30:00 10ms /
00:10:00 10ms /
00:00:00 10ms /
Request /www/ is logged when it finishes, and not in the slot it started.