# HG changeset patch # User Matt Johnston # Date 1340505458 -28800 # Node ID a1aa4176ca2c39b309f4b7af1137b02c84079180 # Parent 2aed800aa2e985e93a76304083b4f931a6db3b45 update values one at a time, ignore failure diff -r 2aed800aa2e9 -r a1aa4176ca2c web/log.py --- a/web/log.py Sat Jun 23 23:37:36 2012 +0800 +++ b/web/log.py Sun Jun 24 10:37:38 2012 +0800 @@ -9,6 +9,7 @@ import time import syslog import sqlite3 +import traceback from colorsys import hls_to_rgb import config @@ -87,7 +88,12 @@ rrdfile = sensor_rrd_path(sensor_id) print>>sys.stderr, values # XXX what to do here when it fails... - rrdtool.update(rrdfile, *values) + for v in values: + try: + rrdtool.update(rrdfile, v) + except Exception, e: + print>>sys.stderr, "Bad rrdtool update '%s'" % v + traceback.print_exc(file=sys.stderr) # be paranoid f = file(rrdfile)