From b7b399a9aba433ba628ce3903cde86284fe78588 Mon Sep 17 00:00:00 2001 From: Philipp Winter Date: Tue, 6 Oct 2020 10:20:41 -0700 Subject: [PATCH] Shorten log message. --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 05ecbe6..99317d9 100644 --- a/main.go +++ b/main.go @@ -141,7 +141,7 @@ func main() { } if err := cache.ReadFromDisk(cacheFile); err != nil { - log.Printf("Could not read cache because: %s", err) + log.Printf("Could not read cache: %s", err) } if printCache { printPrettyCache() -- GitLab