all repos — honk @ 017e2f0d06d7c16fb618c8497c9c8decf932f62a

my fork of honk

fix format string
Ted Unangst tedu@tedunangst.com
Sat, 09 May 2020 19:08:57 -0400
commit

017e2f0d06d7c16fb618c8497c9c8decf932f62a

parent

f6d012fe139384598eaa0e82641eb039febd2fef

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M web.goweb.go

@@ -2338,7 +2338,7 @@ func bgmonitor() {

for { time.Sleep(5 * time.Minute) log.Printf("good morning!") - log.Printf("outstanding deliveries: %s", garage.Outstanding()) + log.Printf("outstanding deliveries: %d", garage.Outstanding()) } }