Remove debug log information about regular configuration saving.

Wed, 13 Aug 2014 17:37:59 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Wed, 13 Aug 2014 17:37:59 +0200
changeset 227
1cb55ea51f76
parent 226
d857032c6201
child 228
11655e7124c5

Remove debug log information about regular configuration saving.

thermferm/thermferm.c file | annotate | diff | comparison | revisions
--- 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();
-		}
 	    }
 	}
 

mercurial