Disable polling logs in librenms service

I am polling with librenms-service.py as systemctl service.

I have log level configured as ERROR in config.php;
$config[‘service_loglevel’] = ‘ERROR’;

but i’m having lots of poller log lines in logs/librenms.log
/disco2/opt/librenms/poller.php 1244 2019-10-24 12:19:20 - 1 devices polled in 5.875 secs
/disco2/opt/librenms/poller.php 261 2019-10-24 12:19:21 - 1 devices polled in 2.904 secs
/disco2/opt/librenms/poller.php 807 2019-10-24 12:19:22 - 1 devices polled in 4.773 secs
/disco2/opt/librenms/poller.php 703 2019-10-24 12:19:23 - 1 devices polled in 4.444 secs
/disco2/opt/librenms/poller.php 184 2019-10-24 12:19:25 - 1 devices polled in 13.86 secs

How I can avoid it?

That log output is done by the php code, so it is unrelated to the dispatch service.

Yes, I found is the d_echo("$string\n"); line in poller.php.

But ¿There is any way to avoid this output?
I have about 1500 devices polling each 10 minutes, and its very dificult to see another thing than poller lines.

I don’t think so. Code PRs welcome to change it.

What I usually do is egrep -v 'poller\.php|discovery\.php' logs/librenms.log