Glenn,
See below and attached.  Thanks  Bob

On Sunday, February 3, 2019 at 4:44:22 PM UTC-5, Glenn McKechnie wrote:
>
> Okay, it seems that we're back to square one. 
>
> Using your template here. It now works. (the utf-8 selection code 
> within it must be correcting the problem I encountered.) 
> Regarding your skin.conf file. If I remove the templates I don't have 
> from it, then it also works. 
> ie: I get an index.html page generated with working NOAA files using 
> both your supplied files. 
>
> Your skin.conf file suggests that your HTML_ROOT = 
> /home/weewx/public_html (at least for your hws data) 
> Your previous reply for the NOAA files states they are at 
> /home/weewx/pub_html. Is this path the same for your Standard? skin, 
> the one that generates the index.html in question?  * YES*

 

>
> ie: Is the NOAA directory (with the NOAA-YYYY-MM.txt  files) a 
> subdirectory of where your index.html file lands?
> * YES, .txt files from 2007 to present are there*

 

> What does weewx.conf set your HTML_ROOT as? [StdReport]
>
>     
>
>
>
>
> *# Where the skins reside, relative to WEEWX_ROOT    SKIN_ROOT = skins    
> # Where the generated reports should go, relative to WEEWX_ROOT    
> HTML_ROOT = public_html*
>
>
> Failing that, I'm out of ideas and it looks like we are back to basics... 
>
> Turn on debug (debug = 1) in weewx.conf. 
> Restart weewx 
> Post a syslog extract that captures the start of weewx and a couple of 
> report cycles. 
>
> p.s. In answer to your location question. I'm in Victoria, Australia 
>
> On 04/02/2019, [email protected] <javascript:> <[email protected] 
> <javascript:>> wrote: 
> > Glenn, 
> > 
> > Something odd. My index.html.tmpl looks ok (attached) so something is 
> > happening when it's used to generate the page. I have also attached the 
> > skin.conf file in case that helps in understanding what's going on. Both 
> > files are local and the problem is on my local machine as well as the 
> pages 
> > 
> > uploaded to my GoDaddy site. 
> > 
> > On Saturday, February 2, 2019 at 5:24:42 PM UTC-5, Glenn McKechnie 
> wrote: 
> >> 
> >> Hi Bob, 
> >> 
> >> Your page at http://grattans.org/wx/ is missing some vital code, which 
> >> interestingly you have correct in your last post. 
> >> Is that from your local tmpl version? 
> >> 
> >> The navbar code is missing the 6 lines that start with - in the diff 
> >> below. 
> >> 
> >> @@ -451,17 +451,11 @@ 
> >>          <input type="button" value="    Year     " 
> >> onclick="openURL('year.html')" /> 
> >>          <p>Monthly summary:&nbsp; 
> >>          <select NAME=noaaselect onchange="openNoaaFile(value)"> 
> >> -        #for $monthYear in $SummaryByMonth 
> >> -            <option value="$monthYear">$monthYear</option> 
> >> -        #end for 
> >>             <option selected>-Select month-</option> 
> >>          </select> 
> >>          <br/> 
> >>          Yearly summary:&nbsp; 
> >>          <select NAME=noaaselect onchange="openNoaaFile(value)"> 
> >> -        #for $yr in $SummaryByYear 
> >> -            <option value="$yr">$yr</option> 
> >> -        #end for 
> >>             <option selected>-Select year-</option> 
> >>          </select> 
> >>          </p> 
> >> 
> >> I have your page at http://grattans.org/wx/ correctly generating the 
> >> NOAA pages here  if I include that AND also fix the unicode error in 
> >> your http://forecast.weather.gov url. 
> >> 
> >> CheetahGenerator complains about invalid code -  I see this " 
> >> highlight=on​ " 
> >> Remove evrything after the =on and it should generate correctly and 
> >> you'll get a fresh copy created and uploaded to your website. 
> >> Obviously you'll eventually need to correct the URL and replace 
> >> whatever we have rudely taken out. 
> >> 
> >> I suspect half the problem is here, with this broken URL. It breaks 
> >> page generation and we/you aren't seeing your changes as the latest 
> >> changes aren't being uploaded. 
> >> 
> >> 
> >> 
> >> 
> >> 
> >> 
> >> On 03/02/2019, [email protected] <javascript:> <[email protected] 
> >> <javascript:>> wrote: 
> >> > Glenn, 
> >> > Here's what I found, so far: 
> >> > 
> >> > two NOAA directories 
> >> > /home/weewx/skins/Standard/NOAA - contains 2 template files for YYYY 
> and 
> >> > 
> >> MM 
> >> > 
> >> > summaries 
> >> > /home/weewx/pub_html/NOAA - contains all the summary files *.txt from 
> >> > 2007-present day 
> >> > 
> >> > I substituted the original index.html.tmpl and an older weewx.conf 
> file 
> >> > 
> >> and 
> >> > 
> >> > got the same results, no pull down YYYY or MM summaries. 
> >> > 
> >> > The files seem to be being built but not accessible from index.html 
> >> > Standard skin. 
> >> > 
> >> > From my index.html.tmpl: 
> >> > 
> >> >  <div id="navbar"> 
> >> >         <input type="button" value="   Current   " 
> >> > onclick="openURL('index.html')" /> 
> >> >         <input type="button" value="    Week     " 
> >> > onclick="openURL('week.html')" /> 
> >> >         <input type="button" value="    Month    " 
> >> > onclick="openURL('month.html')" /> 
> >> >         <input type="button" value="    Year     " 
> >> > onclick="openURL('year.html')" /> 
> >> >         <p>Monthly summary:&nbsp; 
> >> >         <select NAME=noaaselect onchange="openNoaaFile(value)"> 
> >> >         #for $monthYear in $SummaryByMonth 
> >> >             <option value="$monthYear">$monthYear</option> 
> >> >         #end for 
> >> >             <option selected>-Select month-</option> 
> >> >         </select> 
> >> >         <br/> 
> >> >         Yearly summary:&nbsp; 
> >> >         <select NAME=noaaselect onchange="openNoaaFile(value)"> 
> >> >         #for $yr in $SummaryByYear 
> >> >             <option value="$yr">$yr</option> 
> >> >         #end for 
> >> >             <option selected>-Select year-</option> 
> >> >         </select> 
> >> >         </p> 
> >> >       </div> 
> >> >     </div> 
> >> > 
> >> > Thanks for your continued help.  Hope the above tells you something. 
> >> Sorry 
> >> > I'm not much 
> >> > of a programmer. 
> >> > 
> >> > Bob 
> >> > 
> >> > -- 
> >> > 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] <javascript:>. 
> >> > For more options, visit https://groups.google.com/d/optout. 
> >> > 
> >> 
> >> 
> >> -- 
> >> 
> >> 
> >> Cheers 
> >>  Glenn 
> >> 
> >> rorpi - read only raspberry pi & various weewx addons 
> >> https://github.com/glennmckechnie 
> >> 
> > 
> > -- 
> > 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] <javascript:>. 
> > For more options, visit https://groups.google.com/d/optout. 
> > 
>
>
> -- 
>
>
> Cheers 
>  Glenn 
>
> rorpi - read only raspberry pi & various weewx addons 
> https://github.com/glennmckechnie 
>

-- 
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].
For more options, visit https://groups.google.com/d/optout.
Feb  3 16:57:24 n4mrv weewx[28170]: engine: Shutting down StdReport thread
Feb  3 16:57:24 n4mrv weewx[28170]: engine: Terminating weewx version 3.8.2
Feb  3 16:57:24 n4mrv weewx[4179]: engine: Initializing weewx version 3.8.2
Feb  3 16:57:24 n4mrv weewx[4179]: engine: Using Python 2.7.15rc1 (default, Nov 
12 2018, 14:31:15) #012[GCC 7.3.0]
Feb  3 16:57:24 n4mrv weewx[4179]: engine: Platform 
Linux-4.15.0-45-generic-x86_64-with-Ubuntu-18.04-bionic
Feb  3 16:57:24 n4mrv weewx[4179]: engine: Locale is 'en_US.UTF-8'
Feb  3 16:57:24 n4mrv weewx[4179]: engine: pid file is /var/run/weewx.pid
Feb  3 16:57:24 n4mrv weewx[4183]: engine: Using configuration file 
/home/weewx/weewx.conf
Feb  3 16:57:24 n4mrv weewx[4183]: engine: Debug is 1
Feb  3 16:57:24 n4mrv weewx[4183]: engine: Initializing engine
Feb  3 16:57:24 n4mrv weewx[4183]: engine: Loading station type Vantage 
(weewx.drivers.vantage)
Feb  3 16:57:24 n4mrv weewx[4183]: vantage: Driver version is 3.0.11
Feb  3 16:57:24 n4mrv weewx[4183]: vantage: Opened up serial port /dev/ttyS0; 
baud 19200; timeout 5.00
Feb  3 16:57:24 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 16:57:24 n4mrv weewx[4183]: vantage: Hardware type is 16
Feb  3 16:57:25 n4mrv weewx[4183]: vantage: ISS ID is 1
Feb  3 16:57:25 n4mrv weewx[4183]: vantage: Hardware name: Vantage Pro2
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
weewx.engine.StdTimeSynch
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.engine.StdTimeSynch
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
weewx.engine.StdConvert
Feb  3 16:57:25 n4mrv weewx[4183]: engine: StdConvert target unit is 0x1
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.engine.StdConvert
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
weewx.engine.StdCalibrate
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.engine.StdCalibrate
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service weewx.engine.StdQC
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.engine.StdQC
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
weewx.wxservices.StdWXCalculate
Feb  3 16:57:25 n4mrv weewx[4183]: wxcalculate: The following values will be 
calculated: barometer=prefer_hardware, windchill=prefer_hardware, dewpoi
nt=prefer_hardware, appTemp=prefer_hardware, rainRate=prefer_hardware, 
windrun=prefer_hardware, heatindex=prefer_hardware, maxSolarRad=prefer_hardwar
e, humidex=prefer_hardware, pressure=prefer_hardware, 
inDewpoint=prefer_hardware, ET=prefer_hardware, altimeter=prefer_hardware, 
cloudbase=prefer_har
dware
Feb  3 16:57:25 n4mrv weewx[4183]: wxcalculate: The following algorithms will 
be used for calculations: altimeter=aaNOAA, maxSolarRad=RS
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.wxservices.StdWXCalculate
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
user.cmon.ComputerMonitor
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: service version is 0.13
Feb  3 16:57:25 n4mrv weewx[4183]: manager: Daily summary version is 1.0
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: sysinfo: Linux n4mrv 4.15.0-45-generic 
#48-Ubuntu SMP Tue Jan 29 16:28:13 UTC 2019 x86_64
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: cpu cores: 2
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: bogomips: 5786.67
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: core id: 1
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: apicid: 3
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: fpu_exception: yes
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: stepping: 3
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: cache_alignment: 64
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: clflush size: 64
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: microcode: 0x25
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: cache size: 3072 KB
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: cpuid level: 13
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: fpu: yes
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: model name: Intel(R) Core(TM) 
i3-4130T CPU @ 2.90GHz
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: siblings: 4
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: physical id: 0
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: address sizes: 39 bits 
physical, 48 bits virtual
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: cpu family: 6
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: vendor_id: GenuineIntel
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: wp: yes
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: power management:
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: bugs: cpu_meltdown spectre_v1 
spectre_v2 spec_store_bypass l1tf
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: flags: fpu vme de pse tsc msr 
pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx
 fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc 
arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc cpuid aperfmperf pni
pclmulqdq dtes64 monitor ds_cpl vmx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid 
sse4_1 sse4_2 movbe popcnt tsc_deadline_timer aes xsave avx f16c rdran
d lahf_lm abm cpuid_fault epb invpcid_single pti ssbd ibrs ibpb stibp 
tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 e
rms invpcid xsaveopt dtherm arat pln pts flush_l1d
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: cpu MHz: 2065.385
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: model: 60
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: processor: 3
Feb  3 16:57:25 n4mrv weewx[4183]: cmon: cpuinfo: initial apicid: 3
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
user.cmon.ComputerMonitor
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
user.crt.CumulusRealTime
Feb  3 16:57:25 n4mrv weewx[4183]: crt: service version is 0.18
Feb  3 16:57:25 n4mrv weewx[4183]: crt: output goes to 
/home/weewx/public_html/WX-HWS-master/realtime.txt
Feb  3 16:57:25 n4mrv weewx[4183]: crt: 'None' values will be displayed as NULL
Feb  3 16:57:25 n4mrv weewx[4183]: crt: units will be displayed as US
Feb  3 16:57:25 n4mrv weewx[4183]: crt: zambretti forecast: True
Feb  3 16:57:25 n4mrv weewx[4183]: crt: binding is loop
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
user.crt.CumulusRealTime
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
weewx.engine.StdArchive
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Archive will use data binding 
wx_binding
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Record generation will be attempted 
in 'hardware'
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Using archive interval of 900 
seconds (specified by hardware)
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Use LOOP data in hi/low 
calculations: 1
Feb  3 16:57:25 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Using binding 'wx_binding' to 
database 'weewx.sdb'
Feb  3 16:57:25 n4mrv weewx[4183]: manager: Starting backfill of daily summaries
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.engine.StdArchive
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
user.forecast.NWSForecast
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: NWS: forecast version 
3.2.4
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: NWS: last forecast 
issued 2016-11-24 16:02:00 EST (1480021320), requested 2016-11-24 17:15:1
7 EST (1480025717)
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: NWS: interval=10800 
max_age=604800 lid=VAZ115 foid=AKQ
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
user.forecast.NWSForecast
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
user.forecast.ZambrettiForecast
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: Zambretti: forecast 
version 3.2.4
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: Zambretti: last 
forecast issued 2019-02-03 15:30:00 EST (1549225800), requested 2019-02-03 1
5:30:00 EST (1549225800)
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: Zambretti: 
interval=600 max_age=604800 winddir_period=1800 pressure_period=10800 
hemisphere=
NORTH lower_pressure=950.0 upper_pressure=1050.0
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
user.forecast.ZambrettiForecast
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
user.forecast.WUForecast
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: WU: forecast version 
3.2.4
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: WU: last forecast 
issued 2019-02-03 14:00:15 EST (1549220415), requested 2019-02-03 14:00:15
 EST (1549220415)
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: WU: interval=10800 
max_age=604800 api_key=XXXXXXXXXXXX1694 location=37.7531,-77.4843 fc=hour
ly10day
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
user.forecast.WUForecast
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
user.forecast.XTideForecast
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: XTide: forecast 
version 3.2.4
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: XTide: location 
(location) has not been specified
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: XTide: forecast will 
not be run
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
user.forecast.XTideForecast
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
user.forecast.OWMForecast
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: OWM: forecast version 
3.2.4
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: OWM: API key (api_key) 
is not specified
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: OWM: forecast will not 
be run
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
user.forecast.OWMForecast
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
user.forecast.UKMOForecast
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: UKMO: forecast version 
3.2.4
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: UKMO: API key 
(api_key) is not specified
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: UKMO: forecast will 
not be run
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
user.forecast.UKMOForecast
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
user.forecast.AerisForecast
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: Aeris: forecast 
version 3.2.4
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: Aeris: client 
identifier (client_id) is not specified
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: Aeris: client secret 
(client_secret) is not specified
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: Aeris: forecast will 
not be run
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
user.forecast.AerisForecast
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
user.forecast.WWOForecast
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: WWO: forecast version 
3.2.4
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: WWO: API key (api_key) 
is not specified
Feb  3 16:57:25 n4mrv weewx[4183]: forecast: MainThread: WWO: forecast will not 
be run
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
user.forecast.WWOForecast
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
weewx.restx.StdStationRegistry
Feb  3 16:57:25 n4mrv weewx[4183]: restx: StationRegistry: Station will be 
registered.
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.restx.StdStationRegistry
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
weewx.restx.StdWunderground
Feb  3 16:57:25 n4mrv weewx[4183]: restx: Wunderground-PWS: Data for station 
KVAASHLA4 will be posted
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.restx.StdWunderground
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
weewx.restx.StdPWSweather
Feb  3 16:57:25 n4mrv weewx[4183]: restx: PWSWeather: Data for station N4MRV 
will be posted
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.restx.StdPWSweather
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service weewx.restx.StdCWOP
Feb  3 16:57:25 n4mrv weewx[4183]: restx: CWOP: Data for station N4MRV-1 will 
be posted
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.restx.StdCWOP
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service weewx.restx.StdWOW
Feb  3 16:57:25 n4mrv weewx[4183]: restx: WOW: Data for station 964806001 will 
be posted
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.restx.StdWOW
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service weewx.restx.StdAWEKAS
Feb  3 16:57:25 n4mrv weewx[4183]: restx: AWEKAS: Data will be uploaded for 
user bgrattan
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.restx.StdAWEKAS
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service user.emoncms.EmonCMS
Feb  3 16:57:25 n4mrv weewx[4183]: restx: EmonCMS: service version is 0.14
Feb  3 16:57:25 n4mrv weewx[4183]: restx: EmonCMS: node is 0
Feb  3 16:57:25 n4mrv weewx[4183]: restx: EmonCMS: Data will be uploaded with 
token=XXXXXXXXXXXXXXXXXXXXXXXXXXXXb634
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
user.emoncms.EmonCMS
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service weewx.engine.StdPrint
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.engine.StdPrint
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Loading service 
weewx.engine.StdReport
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Finished loading service 
weewx.engine.StdReport
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Starting up weewx version 3.8.2
Feb  3 16:57:25 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 16:57:25 n4mrv weewx[4183]: message repeated 5 times: [ manager: Daily 
summary version is 2.0]
Feb  3 16:57:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Clock error is -0.21 seconds 
(positive is fast)
Feb  3 16:57:25 n4mrv weewx[4183]: vantage: Getting archive packets since 
2019-02-03 16:45:00 EST (1549230300)
Feb  3 16:57:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 16:57:25 n4mrv weewx[4183]: vantage: Retrieving 0 page(s); starting 
index= 0
Feb  3 16:57:25 n4mrv weewx[4183]: engine: Starting main packet loop.
Feb  3 16:57:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 16:57:25 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 16:57:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 16:57:25 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 16:57:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 16:57:27 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 16:57:27 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 16:57:29 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 16:57:29 n4mrv weewx[4183]: vantage: Gentle wake up of console successful

[more wake up cut out to save space]

Feb  3 17:00:15 n4mrv weewx[4183]: vantage: Getting archive packets since 
2019-02-03 16:45:00 EST (1549230300)
Feb  3 17:00:15 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:15 n4mrv weewx[4183]: vantage: Retrieving 1 page(s); starting 
index= 1
Feb  3 17:00:15 n4mrv weewx[4183]: manager: Added record 2019-02-03 17:00:00 
EST (1549231200) to database 'weewx.sdb'
Feb  3 17:00:15 n4mrv weewx[4183]: manager: Added record 2019-02-03 17:00:00 
EST (1549231200) to daily summary in 'weewx.sdb'
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: MainThread: NWS: starting thread
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: NWSThread: NWS: downloading 
forecast from 'http://forecast.weather.gov/product.php?site=NWS&product=AFM&;
format=txt&issuedby=AKQ'
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: MainThread: Zambretti: starting 
thread
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: 
generating forecast for 2019-02-03 09:00:00 EST (1549202400)
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: MainThread: WU: starting thread
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: using 
winddir from 2019-02-03 08:30:00 EST (1549200600) to 2019-02-03 09:00:
00 EST (1549202400)
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: using 
pressure from 2019-02-03 06:00:00 EST (1549191600) to 2019-02-03 09:00
:00 EST (1549202400)
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: WUThread: WU: download forecast 
from 'http://api.wunderground.com/api/XXXXXXXXXXXX1694/hourly10day/q/37.
7531,-77.4843.json'
Feb  3 17:00:15 n4mrv weewx[4183]: vantage: DMPAFT complete: page timestamp 
2019-01-08 01:15:00 EST (1546928100) less than final timestamp 2019-02-03
 17:00:00 EST (1549231200)
Feb  3 17:00:15 n4mrv weewx[4183]: vantage: Catch up complete.
Feb  3 17:00:15 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:15 n4mrv weewx[4183]: reportengine: Running reports for latest 
time in the database.
Feb  3 17:00:15 n4mrv weewx[4183]: reportengine: Running report StandardReport
Feb  3 17:00:15 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/Standard/skin.conf for report StandardReport
Feb  3 17:00:15 n4mrv weewx[4183]: cheetahgenerator: using search list 
['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.ch
eetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 
'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras', 
'user.forecast.ForecastV
ariables']
Feb  3 17:00:15 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:15 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: 
units=1 winddir=None pressure=30.1765384615 first_p=30.163 last_p=30.191
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: 
pressure=1021.8947252 month=1 winddir=None trend=0.316062894823 north=True
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: code 
is B
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: 
generated 1 forecast record
Feb  3 17:00:15 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: saving 
1 forecast records
Feb  3 17:00:15 n4mrv weewx[4183]: manager: Added record 2019-02-03 17:00:00 
EST (1549231200) to database 'archive/forecast.sdb'
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: saved 
1 forecast records
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: 
deleting forecasts prior to 1548626415
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: 
deleted forecasts prior to 1548626415
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: 
terminating thread
Feb  3 17:00:15 n4mrv weewx[4183]: restx: EmonCMS: Published record 2019-02-03 
17:00:00 EST (1549231200)
Feb  3 17:00:15 n4mrv weewx[4183]: restx: Wunderground-PWS: Published record 
2019-02-03 17:00:00 EST (1549231200)
Feb  3 17:00:15 n4mrv weewx[4183]: restx: PWSWeather: Published record 
2019-02-03 17:00:00 EST (1549231200)
Feb  3 17:00:15 n4mrv weewx[4183]: restx: StationRegistry: Published record 
2019-02-03 17:00:00 EST (1549231200)
Feb  3 17:00:15 n4mrv weewx[4183]: restx: AWEKAS: Published record 2019-02-03 
17:00:00 EST (1549231200)
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: WUThread: WU: got 240 forecast 
records
Feb  3 17:00:15 n4mrv weewx[4183]: forecast: WUThread: WU: saving 240 forecast 
records
Feb  3 17:00:15 n4mrv weewx[4183]: manager: Added record 2019-02-03 17:00:15 
EST (1549231215) to database 'archive/forecast.sdb'
Feb  3 17:00:16 n4mrv weewx[4183]: message repeated 239 times: [ manager: Added 
record 2019-02-03 17:00:15 EST (1549231215) to database 'archive/fore
cast.sdb']
Feb  3 17:00:16 n4mrv weewx[4183]: forecast: WUThread: WU: saved 240 forecast 
records
Feb  3 17:00:16 n4mrv weewx[4183]: forecast: WUThread: WU: deleting forecasts 
prior to 1548626416
Feb  3 17:00:16 n4mrv weewx[4183]: forecast: WUThread: WU: deleted forecasts 
prior to 1548626416
Feb  3 17:00:16 n4mrv weewx[4183]: forecast: WUThread: WU: terminating thread
Feb  3 17:00:16 n4mrv weewx[4183]: cheetahgenerator: Generated 17 files for 
report StandardReport in 0.94 seconds
Feb  3 17:00:16 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:00:16 n4mrv weewx[4183]: imagegenerator: Generated 28 images for 
StandardReport in 0.39 seconds
Feb  3 17:00:16 n4mrv weewx[4183]: copygenerator: copied 16 files to 
/home/weewx/public_html
Feb  3 17:00:16 n4mrv weewx[4183]: reportengine: Running report cmon
Feb  3 17:00:16 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/cmon/skin.conf for report cmon
Feb  3 17:00:16 n4mrv weewx[4183]: cheetahgenerator: using search list 
['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.ch
eetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 
'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Feb  3 17:00:16 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:00:16 n4mrv weewx[4183]: cheetahgenerator: Generated 1 files for 
report cmon in 0.02 seconds
Feb  3 17:00:16 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:00:16 n4mrv weewx[4183]: manager: Daily summary version is 1.0
Feb  3 17:00:17 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:17 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:17 n4mrv weewx[4183]: forecast: NWSThread: NWS: no PFM found for 
VAZ115 in forecast from AKQ
Feb  3 17:00:17 n4mrv weewx[4183]: forecast: NWSThread: NWS: terminating thread
Feb  3 17:00:17 n4mrv weewx[4183]: imagegenerator: Generated 32 images for cmon 
in 1.04 seconds
Feb  3 17:00:17 n4mrv weewx[4183]: reportengine: Running report lastrain
Feb  3 17:00:17 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/lastrain/skin.conf for report lastrain
Feb  3 17:00:17 n4mrv weewx[4183]: cheetahgenerator: using search list 
['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.ch
eetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 
'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras', 
'user.lastrain.lastRainT
ags']
Feb  3 17:00:17 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:00:17 n4mrv weewx[4183]: cheetahgenerator: Generated 1 files for 
report lastrain in 0.01 seconds
Feb  3 17:00:17 n4mrv weewx[4183]: reportengine: Running report forecast
Feb  3 17:00:17 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/forecast/skin.conf for report forecast
Feb  3 17:00:17 n4mrv weewx[4183]: cheetahgenerator: using search list 
['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.ch
eetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 
'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras', 
'user.forecast.ForecastV
ariables']
Feb  3 17:00:17 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:00:18 n4mrv weewx[4183]: restx: WOW: Published record 2019-02-03 
17:00:00 EST (1549231200)
Feb  3 17:00:19 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:19 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:21 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:21 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:22 n4mrv weewx[4183]: cheetahgenerator: Generated 9 files for 
report forecast in 4.41 seconds
Feb  3 17:00:22 n4mrv weewx[4183]: copygenerator: copied 85 files to 
/home/weewx/public_html/forecast
Feb  3 17:00:22 n4mrv weewx[4183]: reportengine: Running report wxobs
Feb  3 17:00:22 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/wxobs/skin.conf for report wxobs
Feb  3 17:00:22 n4mrv weewx[4183]: cheetahgenerator: using search list 
['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 'weewx.ch
eetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 
'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras', 
'user.wxobs.wxobs']
Feb  3 17:00:22 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:00:22 n4mrv weewx[4183]: cheetahgenerator: Generated 1 files for 
report wxobs in 0.34 seconds
Feb  3 17:00:22 n4mrv weewx[4183]: copygenerator: copied 4 files to 
/home/weewx/public_html/wxobs
Feb  3 17:00:22 n4mrv weewx[4183]: reportengine: Running report FTP
Feb  3 17:00:22 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/Ftp/skin.conf for report FTP
Feb  3 17:00:22 n4mrv weewx[4183]: ftpupload: Attempting secure connection to 
grattans.org
Feb  3 17:00:23 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:23 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:23 n4mrv weewx[4183]: ftpupload: Secure data connection to 
grattans.org
Feb  3 17:00:24 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/weektempdew.png
Feb  3 17:00:24 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/daywind.png
Feb  3 17:00:25 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:25 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/weekwindvec.png
Feb  3 17:00:26 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/weekuv.png
Feb  3 17:00:27 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:27 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:27 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/week.html
Feb  3 17:00:27 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/dayrx.png
Feb  3 17:00:28 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/weekleafTemp2.png
Feb  3 17:00:29 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:29 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:29 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/weekwinddir.png
Feb  3 17:00:30 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/daytempchill.png
Feb  3 17:00:30 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/daywindvec.png
Feb  3 17:00:31 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:31 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:31 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/dayinside.png
Feb  3 17:00:32 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/daywinddir.png
Feb  3 17:00:32 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/weekbarometer.png
Feb  3 17:00:33 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:33 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:33 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/weekrx.png
Feb  3 17:00:34 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/weektempchill.png
Feb  3 17:00:35 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:35 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:35 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/month.html
Feb  3 17:00:35 n4mrv weewx[4183]: restx: CWOP: Attempt 1 to 
rotate.aprs.net:14580. Connection error: timed out
Feb  3 17:00:35 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/dayhumidity.png
Feb  3 17:00:37 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:37 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:37 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/index.html
Feb  3 17:00:37 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/weekrain.png
Feb  3 17:00:38 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/dayET.png
Feb  3 17:00:39 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:39 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:39 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/daybarometer.png
Feb  3 17:00:39 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/weekradiation.png
Feb  3 17:00:40 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/dayradiation.png
Feb  3 17:00:41 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:41 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:41 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/dayextraTemp1.png
Feb  3 17:00:42 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/dayleafTemp2.png
Feb  3 17:00:42 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/week105inside.png
Feb  3 17:00:43 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:43 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:43 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/weewx.css
Feb  3 17:00:44 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/dayrain.png
Feb  3 17:00:44 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/dayuv.png
Feb  3 17:00:45 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:45 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:45 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/mobile.html
Feb  3 17:00:46 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/weekinside.png
Feb  3 17:00:47 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:47 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:47 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/favicon.ico
Feb  3 17:00:48 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/daytempdew.png
Feb  3 17:00:48 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/weekwind.png
Feb  3 17:00:49 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:49 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:49 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/year.html
Feb  3 17:00:50 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/mobile.css
Feb  3 17:00:51 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:51 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:51 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/hws/wxchartdata/2019.csv
Feb  3 17:00:52 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/hws/wxchartdata/03022019.csv
Feb  3 17:00:53 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:53 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:53 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/hws/wxchartdata/022019.csv
Feb  3 17:00:54 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/RSS/weewx_rss.xml
Feb  3 17:00:55 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:55 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:55 n4mrv weewx[4183]: restx: CWOP: Attempt 2 to 
rotate.aprs.net:14580. Connection error: timed out
Feb  3 17:00:55 n4mrv weewx[4183]: restx: CWOP: Connected to server 
rotate.aprs.net:14580
Feb  3 17:00:55 n4mrv weewx[4183]: restx: CWOP: Published record 2019-02-03 
17:00:00 EST (1549231200)
Feb  3 17:00:55 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/WX-HWS-master/realtime.txt
Feb  3 17:00:57 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:57 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:58 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/wxobs/datepicker.css
Feb  3 17:00:59 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:00:59 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:00:59 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/wxobs/wxobs.css
Feb  3 17:01:01 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:01 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:01 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/wxobs/index.php
Feb  3 17:01:01 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/wxobs/font/OpenSans.woff
Feb  3 17:01:02 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/wxobs/font/OpenSans.woff2
Feb  3 17:01:03 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:03 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:03 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/forecast_table.css
Feb  3 17:01:04 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/forecast.css
Feb  3 17:01:05 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:05 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:07 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:07 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:09 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:09 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:09 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/single-table.html
Feb  3 17:01:10 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/multiple-strips.html
Feb  3 17:01:11 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:11 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:12 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/zambretti.html
Feb  3 17:01:13 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:13 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:15 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:15 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:15 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/single-strip.html
Feb  3 17:01:17 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:17 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:17 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/index.html
Feb  3 17:01:19 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:19 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:21 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:21 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:22 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/multiple-tables.html
Feb  3 17:01:23 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:23 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:25 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:25 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/forecast_strip.css
Feb  3 17:01:27 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:27 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:27 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/forecast_iconic.css
Feb  3 17:01:29 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:29 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/forecast-periods.html
Feb  3 17:01:29 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:30 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/tides.html
Feb  3 17:01:31 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:31 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:32 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/iconic.html
Feb  3 17:01:33 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:33 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:34 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/F.png
Feb  3 17:01:35 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:35 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:36 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tSSW.png
Feb  3 17:01:37 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:37 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:38 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/B2n.png
Feb  3 17:01:39 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:39 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:40 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/OVn.png
Feb  3 17:01:41 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:41 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:41 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tESE.png
Feb  3 17:01:43 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:43 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:43 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/N.png
Feb  3 17:01:45 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:45 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:45 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/sunriseset.png
Feb  3 17:01:47 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:47 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:47 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/F+.png
Feb  3 17:01:49 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:49 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:49 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/raintorrent.png
Feb  3 17:01:50 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tNW.png
Feb  3 17:01:51 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:51 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:52 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tWSW.png
Feb  3 17:01:53 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:53 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:54 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/thermometer-red.png
Feb  3 17:01:55 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:55 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:56 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tSW.png
Feb  3 17:01:57 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:57 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:58 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/FW.png
Feb  3 17:01:59 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:01:59 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:01:59 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/OV.png
Feb  3 17:02:01 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:01 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:01 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/B2.png
Feb  3 17:02:03 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:03 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:03 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tE.png
Feb  3 17:02:05 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:05 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:05 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/W.png
Feb  3 17:02:07 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:07 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:07 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tSE.png
Feb  3 17:02:08 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tWNW.png
Feb  3 17:02:09 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:09 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:10 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/raindrop.png
Feb  3 17:02:11 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:11 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:12 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/NE.png
Feb  3 17:02:13 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:13 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:14 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/AF.png
Feb  3 17:02:15 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:15 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:16 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/thermometer.png
Feb  3 17:02:17 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:17 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:18 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/sunrise.png
Feb  3 17:02:19 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:19 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:19 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/S.png
Feb  3 17:02:21 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:21 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:21 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tN.png
Feb  3 17:02:23 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:23 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:23 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/moonriseset.png
Feb  3 17:02:25 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:25 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/snow.png
Feb  3 17:02:27 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:27 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:27 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/SCn.png
Feb  3 17:02:28 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/moon.png
Feb  3 17:02:29 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:29 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:30 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/sunmoon.png
Feb  3 17:02:31 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:31 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:32 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tSSE.png
Feb  3 17:02:33 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:33 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:34 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/triangle-down.png
Feb  3 17:02:35 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:35 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:36 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/SE.png
Feb  3 17:02:37 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:37 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:38 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/thermometer-dewpoint.png
Feb  3 17:02:39 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:39 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:39 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/NW.png
Feb  3 17:02:41 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:41 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:41 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/PF+.png
Feb  3 17:02:43 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:43 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:43 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/flag-yellow.png
Feb  3 17:02:45 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:45 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:45 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/CLn.png
Feb  3 17:02:47 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:47 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:47 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/drizzle.png
Feb  3 17:02:48 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/PF.png
Feb  3 17:02:49 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:49 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:50 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/BD.png
Feb  3 17:02:51 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:51 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:52 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/snowshwrs.png
Feb  3 17:02:53 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:53 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:54 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/snowflake.png
Feb  3 17:02:55 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:55 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:56 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/H.png
Feb  3 17:02:57 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:57 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:57 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/blizzard.png
Feb  3 17:02:59 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:02:59 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:02:59 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/K.png
Feb  3 17:03:01 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:01 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:01 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tNNW.png
Feb  3 17:03:03 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:03 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:03 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tW.png
Feb  3 17:03:05 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:05 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:05 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tS.png
Feb  3 17:03:07 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:07 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:07 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/sun.png
Feb  3 17:03:08 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/sunset.png
Feb  3 17:03:09 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:09 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:10 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/moonset.png
Feb  3 17:03:11 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:11 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:12 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/BS.png
Feb  3 17:03:13 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:13 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:14 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/sprinkles.png
Feb  3 17:03:15 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:15 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:16 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/SW.png
Feb  3 17:03:17 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:17 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:17 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/BK.png
Feb  3 17:03:19 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:19 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:19 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/sleet.png
Feb  3 17:03:21 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:21 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:21 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/CL.png
Feb  3 17:03:23 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:23 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:23 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tENE.png
Feb  3 17:03:25 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:25 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tNNE.png
Feb  3 17:03:26 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/B1n.png
Feb  3 17:03:27 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:27 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:28 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/thermometer-blue.png
Feb  3 17:03:29 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:29 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:30 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/triangle-right.png
Feb  3 17:03:31 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:31 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:32 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/moonrise.png
Feb  3 17:03:33 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:33 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:34 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/flurries.png
Feb  3 17:03:35 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:35 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:35 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/FWn.png
Feb  3 17:03:37 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:37 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:37 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tNE.png
Feb  3 17:03:39 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:39 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:39 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/pop.png
Feb  3 17:03:41 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:41 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:41 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/BKn.png
Feb  3 17:03:43 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:43 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:43 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/moonphase.png
Feb  3 17:03:44 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/SC.png
Feb  3 17:03:45 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:45 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:46 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/water.png
Feb  3 17:03:47 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:47 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:48 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/frzngdrzl.png
Feb  3 17:03:49 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:49 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:50 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/E.png
Feb  3 17:03:51 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:51 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:52 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/flag.png
Feb  3 17:03:53 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:53 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:53 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/rainshwrs.png
Feb  3 17:03:55 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:55 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:55 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/rain.png
Feb  3 17:03:57 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:57 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:57 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/tstms.png
Feb  3 17:03:59 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:03:59 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:03:59 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/icons/B1.png
Feb  3 17:04:01 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:01 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:01 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weekload.png
Feb  3 17:04:02 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthbattery.png
Feb  3 17:04:03 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:03 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:04 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/daynet.png
Feb  3 17:04:05 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:05 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:06 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yearmem.png
Feb  3 17:04:07 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:07 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:08 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/daycpu.png
Feb  3 17:04:09 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:09 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:09 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/daydisk.png
Feb  3 17:04:11 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:11 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:11 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/daytemp.png
Feb  3 17:04:13 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:13 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:13 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yearrx.png
Feb  3 17:04:14 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yearnet.png
Feb  3 17:04:15 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:15 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:16 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/dayrx.png
Feb  3 17:04:17 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:17 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:18 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yearload.png
Feb  3 17:04:19 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:19 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:19 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yeardisk.png
Feb  3 17:04:21 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:21 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:21 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weekbattery.png
Feb  3 17:04:23 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:23 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:23 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yeartemp.png
Feb  3 17:04:25 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:25 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthcpu.png
Feb  3 17:04:26 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weekmem.png
Feb  3 17:04:27 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:27 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:28 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthmem.png
Feb  3 17:04:29 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:29 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:30 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weektemp.png
Feb  3 17:04:31 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:31 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:31 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weekrx.png
Feb  3 17:04:33 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:33 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:33 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yearcpu.png
Feb  3 17:04:35 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:35 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:35 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/daymem.png
Feb  3 17:04:37 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weekcpu.png
Feb  3 17:04:37 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:37 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:38 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthnet.png
Feb  3 17:04:39 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:39 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:40 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/index.html
Feb  3 17:04:41 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:41 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:42 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthrx.png
Feb  3 17:04:43 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:43 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:44 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/dayload.png
Feb  3 17:04:45 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:45 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:45 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weekdisk.png
Feb  3 17:04:47 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:47 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:47 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthtemp.png
Feb  3 17:04:49 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:49 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:49 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yearbattery.png
Feb  3 17:04:50 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/daybattery.png
Feb  3 17:04:51 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:51 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:52 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weeknet.png
Feb  3 17:04:53 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:53 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:54 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthload.png
Feb  3 17:04:55 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:55 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:56 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthdisk.png
Feb  3 17:04:57 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:57 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:57 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/backgrounds/Clouds.jpg
Feb  3 17:04:59 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:04:59 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:04:59 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/backgrounds/leaf.jpg
Feb  3 17:05:01 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:01 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:01 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/backgrounds/flower.jpg
Feb  3 17:05:03 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:03 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:03 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/backgrounds/band.gif
Feb  3 17:05:04 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/backgrounds/Clouds-blue.jpg
Feb  3 17:05:05 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:05 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:06 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/backgrounds/drops.gif
Feb  3 17:05:07 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:07 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:08 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/backgrounds/night.gif
Feb  3 17:05:09 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:09 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:09 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/backgrounds/butterfly.jpg
Feb  3 17:05:11 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:11 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:11 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/lastrain/index.html
Feb  3 17:05:13 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:13 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:13 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/wind.html
Feb  3 17:05:15 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:15 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:15 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/barometer.html
Feb  3 17:05:17 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:17 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:17 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/index.html
Feb  3 17:05:19 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:19 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:19 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/rain.html
Feb  3 17:05:21 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:21 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:21 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/temp_outside.html
Feb  3 17:05:23 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:23 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:23 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/radar.html
Feb  3 17:05:25 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:25 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/custom.js
Feb  3 17:05:27 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:27 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:27 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/icons/icon_iphone_x2.png
Feb  3 17:05:28 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/icons/icon_ipad_x1.png
Feb  3 17:05:29 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:29 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:30 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/icons/icon_iphone_x1.png
Feb  3 17:05:31 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:31 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:32 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/icons/icon_ipad_x2.png
Feb  3 17:05:33 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:33 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:34 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/NOAA/NOAA-2019-02.txt
Feb  3 17:05:35 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:35 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:36 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/NOAA/NOAA-2019.txt
Feb  3 17:05:36 n4mrv weewx[4183]: ftpgenerator: ftp'd 195 files in 313.94 
seconds
Feb  3 17:05:36 n4mrv weewx[4183]: reportengine: Running report RSYNC
Feb  3 17:05:36 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/Rsync/skin.conf for report RSYNC
Feb  3 17:05:36 n4mrv weewx[4183]: rsyncgenerator: rsync upload not requested. 
Skipped.
Feb  3 17:05:37 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:37 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:39 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:39 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:41 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:41 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:05:43 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:05:43 n4mrv weewx[4183]: vantage: Gentle wake up of console successful


[more wake up cut out to save space]

Feb  3 17:15:13 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:13 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:15 n4mrv weewx[4183]: vantage: Getting archive packets since 
2019-02-03 17:00:00 EST (1549231200)
Feb  3 17:15:15 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:15 n4mrv weewx[4183]: vantage: Retrieving 1 page(s); starting 
index= 2
Feb  3 17:15:15 n4mrv weewx[4183]: manager: Added record 2019-02-03 17:15:15 
EST (1549232115) to database 'cmon.sdb'
Feb  3 17:15:15 n4mrv weewx[4183]: manager: Added record 2019-02-03 17:15:15 
EST (1549232115) to daily summary in 'cmon.sdb'
Feb  3 17:15:15 n4mrv weewx[4183]: manager: Added record 2019-02-03 17:15:00 
EST (1549232100) to database 'weewx.sdb'
Feb  3 17:15:15 n4mrv weewx[4183]: manager: Added record 2019-02-03 17:15:00 
EST (1549232100) to daily summary in 'weewx.sdb'
Feb  3 17:15:15 n4mrv weewx[4183]: forecast: MainThread: NWS: starting thread
Feb  3 17:15:15 n4mrv weewx[4183]: forecast: NWSThread: NWS: downloading 
forecast from 
'http://forecast.weather.gov/product.php?site=NWS&product=AFM&format=txt&issuedby=AKQ'
Feb  3 17:15:15 n4mrv weewx[4183]: forecast: MainThread: Zambretti: starting 
thread
Feb  3 17:15:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: 
forecast was already calculated for 2019-02-03 09:00:00 EST (1549202400)
Feb  3 17:15:15 n4mrv weewx[4183]: forecast: MainThread: WU: not yet time to do 
the forecast
Feb  3 17:15:15 n4mrv weewx[4183]: forecast: ZambrettiThread: Zambretti: 
terminating thread
Feb  3 17:15:15 n4mrv weewx[4183]: restx: StationRegistry: wait interval (900 < 
604800) has not passed for record 2019-02-03 17:15:00 EST (1549232100)
Feb  3 17:15:15 n4mrv weewx[4183]: vantage: DMPAFT complete: page timestamp 
2019-01-08 01:30:00 EST (1546929000) less than final timestamp 2019-02-03 
17:15:00 EST (1549232100)
Feb  3 17:15:15 n4mrv weewx[4183]: vantage: Catch up complete.
Feb  3 17:15:15 n4mrv weewx[4183]: reportengine: Running reports for latest 
time in the database.
Feb  3 17:15:15 n4mrv weewx[4183]: reportengine: Running report StandardReport
Feb  3 17:15:15 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:15 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/Standard/skin.conf for report StandardReport
Feb  3 17:15:15 n4mrv weewx[4183]: cheetahgenerator: using search list 
['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 
'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 
'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras', 
'user.forecast.ForecastVariables']
Feb  3 17:15:15 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:15 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:15:15 n4mrv weewx[4183]: restx: EmonCMS: Published record 2019-02-03 
17:15:00 EST (1549232100)
Feb  3 17:15:15 n4mrv weewx[4183]: restx: Wunderground-PWS: Published record 
2019-02-03 17:15:00 EST (1549232100)
Feb  3 17:15:15 n4mrv weewx[4183]: restx: CWOP: Connected to server 
rotate.aprs.net:14580
Feb  3 17:15:15 n4mrv weewx[4183]: restx: PWSWeather: Published record 
2019-02-03 17:15:00 EST (1549232100)
Feb  3 17:15:15 n4mrv weewx[4183]: forecast: NWSThread: NWS: no PFM found for 
VAZ115 in forecast from AKQ
Feb  3 17:15:15 n4mrv weewx[4183]: forecast: NWSThread: NWS: terminating thread
Feb  3 17:15:15 n4mrv weewx[4183]: restx: WOW: Published record 2019-02-03 
17:15:00 EST (1549232100)
Feb  3 17:15:15 n4mrv weewx[4183]: restx: CWOP: Published record 2019-02-03 
17:15:00 EST (1549232100)
Feb  3 17:15:15 n4mrv weewx[4183]: restx: AWEKAS: Published record 2019-02-03 
17:15:00 EST (1549232100)
Feb  3 17:15:15 n4mrv weewx[4183]: cheetahgenerator: Generated 17 files for 
report StandardReport in 0.44 seconds
Feb  3 17:15:15 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:15:15 n4mrv weewx[4183]: imagegenerator: Generated 15 images for 
StandardReport in 0.15 seconds
Feb  3 17:15:15 n4mrv weewx[4183]: copygenerator: copied 0 files to 
/home/weewx/public_html
Feb  3 17:15:15 n4mrv weewx[4183]: reportengine: Running report cmon
Feb  3 17:15:15 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/cmon/skin.conf for report cmon
Feb  3 17:15:15 n4mrv weewx[4183]: cheetahgenerator: using search list 
['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 
'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 
'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras']
Feb  3 17:15:15 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:15:15 n4mrv weewx[4183]: cheetahgenerator: Generated 1 files for 
report cmon in 0.00 seconds
Feb  3 17:15:15 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:15:15 n4mrv weewx[4183]: manager: Daily summary version is 1.0
Feb  3 17:15:16 n4mrv weewx[4183]: imagegenerator: Generated 32 images for cmon 
in 0.95 seconds
Feb  3 17:15:16 n4mrv weewx[4183]: reportengine: Running report lastrain
Feb  3 17:15:16 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/lastrain/skin.conf for report lastrain
Feb  3 17:15:16 n4mrv weewx[4183]: cheetahgenerator: using search list 
['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 
'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 
'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras', 
'user.lastrain.lastRainTags']
Feb  3 17:15:16 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:15:16 n4mrv weewx[4183]: cheetahgenerator: Generated 1 files for 
report lastrain in 0.00 seconds
Feb  3 17:15:16 n4mrv weewx[4183]: reportengine: Running report forecast
Feb  3 17:15:16 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/forecast/skin.conf for report forecast
Feb  3 17:15:16 n4mrv weewx[4183]: cheetahgenerator: using search list 
['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 
'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 
'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras', 
'user.forecast.ForecastVariables']
Feb  3 17:15:16 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:15:17 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:18 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:20 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:20 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:21 n4mrv weewx[4183]: cheetahgenerator: Generated 9 files for 
report forecast in 4.15 seconds
Feb  3 17:15:21 n4mrv weewx[4183]: copygenerator: copied 0 files to 
/home/weewx/public_html/forecast
Feb  3 17:15:21 n4mrv weewx[4183]: reportengine: Running report wxobs
Feb  3 17:15:21 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/wxobs/skin.conf for report wxobs
Feb  3 17:15:21 n4mrv weewx[4183]: cheetahgenerator: using search list 
['weewx.cheetahgenerator.Almanac', 'weewx.cheetahgenerator.Station', 
'weewx.cheetahgenerator.Current', 'weewx.cheetahgenerator.Stats', 
'weewx.cheetahgenerator.UnitInfo', 'weewx.cheetahgenerator.Extras', 
'user.wxobs.wxobs']
Feb  3 17:15:21 n4mrv weewx[4183]: manager: Daily summary version is 2.0
Feb  3 17:15:21 n4mrv weewx[4183]: cheetahgenerator: Generated 1 files for 
report wxobs in 0.03 seconds
Feb  3 17:15:21 n4mrv weewx[4183]: copygenerator: copied 0 files to 
/home/weewx/public_html/wxobs
Feb  3 17:15:21 n4mrv weewx[4183]: reportengine: Running report FTP
Feb  3 17:15:21 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/Ftp/skin.conf for report FTP
Feb  3 17:15:21 n4mrv weewx[4183]: ftpupload: Attempting secure connection to 
grattans.org
Feb  3 17:15:21 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:21 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:21 n4mrv weewx[4183]: ftpupload: Secure data connection to 
grattans.org
Feb  3 17:15:22 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/daywind.png
Feb  3 17:15:23 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:23 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:23 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/week.html
Feb  3 17:15:24 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/dayrx.png
Feb  3 17:15:25 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/daytempchill.png
Feb  3 17:15:25 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:25 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/daywindvec.png
Feb  3 17:15:26 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/dayinside.png
Feb  3 17:15:27 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:27 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:27 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/daywinddir.png
Feb  3 17:15:28 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/month.html
Feb  3 17:15:28 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/dayhumidity.png
Feb  3 17:15:29 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:29 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:30 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/index.html
Feb  3 17:15:30 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/dayET.png
Feb  3 17:15:31 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:31 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:31 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/daybarometer.png
Feb  3 17:15:32 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/dayradiation.png
Feb  3 17:15:32 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/dayextraTemp1.png
Feb  3 17:15:33 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:33 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:33 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/dayleafTemp2.png
Feb  3 17:15:34 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/dayrain.png
Feb  3 17:15:35 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/dayuv.png
Feb  3 17:15:35 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:35 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:35 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/mobile.html
Feb  3 17:15:36 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/daytempdew.png
Feb  3 17:15:37 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:37 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:37 n4mrv weewx[4183]: ftpupload: Uploaded file /weewx/year.html
Feb  3 17:15:38 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/hws/wxchartdata/2019.csv
Feb  3 17:15:39 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:39 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:39 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/hws/wxchartdata/03022019.csv
Feb  3 17:15:40 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/hws/wxchartdata/022019.csv
Feb  3 17:15:41 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:41 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:41 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/RSS/weewx_rss.xml
Feb  3 17:15:42 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/WX-HWS-master/realtime.txt
Feb  3 17:15:43 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:43 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:45 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:45 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:46 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/wxobs/index.php
Feb  3 17:15:47 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:47 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:49 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:49 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:51 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:51 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:51 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/single-table.html
Feb  3 17:15:52 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/multiple-strips.html
Feb  3 17:15:53 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:53 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:53 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/zambretti.html
Feb  3 17:15:55 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:55 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:55 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/single-strip.html
Feb  3 17:15:56 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/index.html
Feb  3 17:15:57 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:57 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:15:59 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:15:59 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:00 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/multiple-tables.html
Feb  3 17:16:01 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:01 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:01 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/forecast-periods.html
Feb  3 17:16:02 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/tides.html
Feb  3 17:16:03 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:03 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:03 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/forecast/iconic.html
Feb  3 17:16:04 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weekload.png
Feb  3 17:16:05 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:05 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:05 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthbattery.png
Feb  3 17:16:05 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/daynet.png
Feb  3 17:16:06 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yearmem.png
Feb  3 17:16:07 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:07 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:07 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/daycpu.png
Feb  3 17:16:08 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/daydisk.png
Feb  3 17:16:08 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/daytemp.png
Feb  3 17:16:09 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:09 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:09 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yearrx.png
Feb  3 17:16:10 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yearnet.png
Feb  3 17:16:10 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/dayrx.png
Feb  3 17:16:11 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:11 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:11 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yearload.png
Feb  3 17:16:12 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yeardisk.png
Feb  3 17:16:12 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weekbattery.png
Feb  3 17:16:13 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:13 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:13 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yeartemp.png
Feb  3 17:16:14 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthcpu.png
Feb  3 17:16:14 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weekmem.png
Feb  3 17:16:15 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:15 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:16 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthmem.png
Feb  3 17:16:17 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:17 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:18 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weektemp.png
Feb  3 17:16:19 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:19 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:20 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weekrx.png
Feb  3 17:16:21 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:21 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:21 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yearcpu.png
Feb  3 17:16:23 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:23 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:23 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/daymem.png
Feb  3 17:16:25 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:25 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:25 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weekcpu.png
Feb  3 17:16:26 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthnet.png
Feb  3 17:16:27 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:27 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:28 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/index.html
Feb  3 17:16:29 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:29 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:30 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthrx.png
Feb  3 17:16:31 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:31 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:32 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/dayload.png
Feb  3 17:16:33 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:33 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:33 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weekdisk.png
Feb  3 17:16:35 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:35 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:35 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthtemp.png
Feb  3 17:16:37 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:37 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:37 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/yearbattery.png
Feb  3 17:16:39 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:39 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:39 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/daybattery.png
Feb  3 17:16:40 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/weeknet.png
Feb  3 17:16:41 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:41 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:42 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthload.png
Feb  3 17:16:43 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:43 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:44 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/cmon/monthdisk.png
Feb  3 17:16:45 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:45 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:46 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/lastrain/index.html
Feb  3 17:16:47 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:47 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:48 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/wind.html
Feb  3 17:16:49 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:49 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:50 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/barometer.html
Feb  3 17:16:51 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:51 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:52 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/index.html
Feb  3 17:16:53 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:53 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:54 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/rain.html
Feb  3 17:16:55 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:55 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:56 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/temp_outside.html
Feb  3 17:16:57 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:57 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:16:58 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/smartphone/radar.html
Feb  3 17:16:59 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:16:59 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:17:00 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/NOAA/NOAA-2019-02.txt
Feb  3 17:17:01 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:17:01 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:17:02 n4mrv weewx[4183]: ftpupload: Uploaded file 
/weewx/NOAA/NOAA-2019.txt
Feb  3 17:17:02 n4mrv weewx[4183]: ftpgenerator: ftp'd 77 files in 101.13 
seconds
Feb  3 17:17:02 n4mrv weewx[4183]: reportengine: Running report RSYNC
Feb  3 17:17:02 n4mrv weewx[4183]: reportengine: Found configuration file 
/home/weewx/skins/Rsync/skin.conf for report RSYNC
Feb  3 17:17:02 n4mrv weewx[4183]: rsyncgenerator: rsync upload not requested. 
Skipped.
Feb  3 17:17:03 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:17:03 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:17:05 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:17:05 n4mrv weewx[4183]: vantage: Gentle wake up of console successful
Feb  3 17:17:07 n4mrv weewx[4183]: vantage: Requesting 2 LOOP packets.
Feb  3 17:17:07 n4mrv weewx[4183]: vantage: Gentle wake up of console successful

Reply via email to