# HG changeset patch # User Michiel Broek # Date 1407944279 -7200 # Node ID 1cb55ea51f764671c04c28cdaeace1852052d54c # Parent d857032c620133d06cbd0825c3063c59673a4605 Remove debug log information about regular configuration saving. diff -r d857032c6201 -r 1cb55ea51f76 thermferm/thermferm.c --- a/thermferm/thermferm.c Wed Aug 13 14:10:57 2014 +0200 +++ b/thermferm/thermferm.c Wed Aug 13 17:37:59 2014 +0200 @@ -798,10 +798,11 @@ if (minutes == 60) minutes = 0; - if ((minutes == 15) || (minutes == 45)) { - syslog(LOG_NOTICE, "minutes %d seconds %d", minutes, seconds); + /* + * Save the configuration each half hour. + */ + if ((minutes == 15) || (minutes == 45)) wrconfig(); - } } }