From 3c0853084517bb312c5078ca6abb9700a675b87a Mon Sep 17 00:00:00 2001 From: Tom Keffer Date: Sun, 1 Apr 2012 21:51:36 +0000 Subject: [PATCH] Changed catchup message to something less alarming. --- bin/weewx/VantagePro.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/weewx/VantagePro.py b/bin/weewx/VantagePro.py index d66b74e1..d174361c 100644 --- a/bin/weewx/VantagePro.py +++ b/bin/weewx/VantagePro.py @@ -507,10 +507,10 @@ class VantagePro(object): # signal that we are done. if _record['dateTime'] is None or _record['dateTime'] <= _last_good_ts : # The time stamp is declining. We're done. - syslog.syslog(syslog.LOG_DEBUG, "VantagePro: time stamps declining. Record timestamp %s" \ - % weeutil.weeutil.timestamp_to_string(_record['dateTime'])) - syslog.syslog(syslog.LOG_DEBUG, " **** Last good timestamp %s" \ + syslog.syslog(syslog.LOG_DEBUG, "VantagePro: Catch up complete. Started at %s" \ % weeutil.weeutil.timestamp_to_string(_last_good_ts)) + syslog.syslog(syslog.LOG_DEBUG, "VantagePro: Page timestamp %s" \ + % weeutil.weeutil.timestamp_to_string(_record['dateTime'])) return # Augment the record with the data from the accumulators: self.archiveAccumulators(_record)