From e7592216c0a175bd6bb78cd9aa495fc66c1b0702 Mon Sep 17 00:00:00 2001 From: Shawn Smith Date: Mon, 26 Apr 2021 15:57:32 +0900 Subject: [PATCH] fix print --- handlers/checks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/handlers/checks.go b/handlers/checks.go index 4229494..e5b5caa 100644 --- a/handlers/checks.go +++ b/handlers/checks.go @@ -45,7 +45,7 @@ func getFromCache(db *badger.DB, repo string) (checksResp, error) { } if item == nil { - log.Println("Repo %q not found in badger cache", repo) + log.Printf("Repo %q not found in badger cache", repo) return notFoundError{repo} }