From 8224d76a2768b8dd70ce4799d02dba7442f1ab65 Mon Sep 17 00:00:00 2001 From: Drew DeVault Date: Thu, 14 Nov 2019 17:14:42 -0500 Subject: [PATCH] gitsrht-keys: use printf instead of println --- gitsrht-keys/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitsrht-keys/main.go b/gitsrht-keys/main.go index 8a6c028..f3691a5 100644 --- a/gitsrht-keys/main.go +++ b/gitsrht-keys/main.go @@ -194,7 +194,7 @@ func main() { } userId = cache.UserId username = cache.Username - logger.Println("Cache hit: %d %s", userId, username) + logger.Printf("Cache hit: %d %s", userId, username) } if username == "" { -- 2.38.4