Reduce polling of pihole.log from 20x per second to 5x per second

This commit is contained in:
DL6ER
2017-04-09 22:43:38 +02:00
parent a33dba3194
commit c7b3ddd2fe
+1 -1
View File
@@ -101,7 +101,7 @@ void *pihole_log_thread(void *val)
}
// Wait some time before looking again at the log files
sleepms(50);
sleepms(200);
}
return NULL;
}