Log is filling with errors of recorder

Since a couple of days I see the following in my log from the recorder: It’s sending keepalive messages.
Have someone else this issue? Or why is this repeating?

2020-05-14 11:31:16 DEBUG (Recorder) [homeassistant.components.recorder] Sending keepalive
2020-05-14 11:31:46 DEBUG (Recorder) [homeassistant.components.recorder] Sending keepalive
2020-05-14 11:32:16 DEBUG (Recorder) [homeassistant.components.recorder] Sending keepalive
2020-05-14 11:32:46 DEBUG (Recorder) [homeassistant.components.recorder] Sending keepalive
2020-05-14 11:33:16 DEBUG (Recorder) [homeassistant.components.recorder] Sending keepalive
2020-05-14 11:33:46 DEBUG (Recorder) [homeassistant.components.recorder] Sending keepalive

Have you added logger: to your configuration.yaml?

If you have, this looks like expected behaviour. Logger default level is DEBUG, and the recorder default is to send a keepalive every 30 seconds (source, see lines 61 and 400ff at the time of writing) and log it at DEBUG level.

Ah thanks… Yes the debug mode was on. Needed the debug two weeks ago for the recorder. Didn’t change that.

Thanks.