Look in belchertown.py near line 3330 for those. To me, they're just noise
messages you can quiet down by just commenting those two lines out. You
might need to restart weewx after doing so, as Belchertown seems to require
that more than some other skins.
if observation == "haysChart":
start_ts = int(start_ts)
end_ts = int(end_ts)
# Set aggregate interval based on timespan and make sure it is
# between 5 minutes and 1 day
*logging.debug("Start time is %s and end time is %s" %
(start_ts, end_ts))*
aggregate_interval = (end_ts - start_ts) / 360
if aggregate_interval < 300:
aggregate_interval = 300
elif aggregate_interval > 86400:
aggregate_interval = 86400
*logging.debug("Interval is: %s" % aggregate_interval)*
On Tuesday, October 8, 2024 at 10:39:22 AM UTC-7 areax99 wrote:
> Hi, I've been having trouble refreshing web pages with the Belchertown
> skin lately. The graphs were not updating and were about half an hour
> behind. After repeatedly dumping and clearing my Davis Vantage pro2 I've
> almost fixed the problem, but I don't understand these DEBUG messages:
> Start time is....Interval is.... What do they mean?
>
--
You received this message because you are subscribed to the Google Groups
"weewx-user" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/weewx-user/a1f0d0e7-6bcc-4799-9c15-3908c9f8e0d3n%40googlegroups.com.