fix format string

This commit is contained in:
Ted Unangst 2020-05-09 19:08:57 -04:00
parent 3c7d500ef9
commit b7f732ce82
1 changed files with 1 additions and 1 deletions

2
web.go
View File

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