From 15076ed22888844a378c7255c257adef37233485 Mon Sep 17 00:00:00 2001 From: Vincent Ambo Date: Fri, 20 Dec 2019 14:40:21 +0000 Subject: fix(sync-gcsr): Fix broken log statement --- services/sync-gcsr/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/sync-gcsr/main.go b/services/sync-gcsr/main.go index eb9df80f6d..daec76b346 100644 --- a/services/sync-gcsr/main.go +++ b/services/sync-gcsr/main.go @@ -68,7 +68,7 @@ func main() { } if err != nil { - log.Fatalln("Failed to %s repository:", action, err) + log.Fatalf("Failed to %s repository: %s", action, err) } else { log.Println("Initiating update loop") } -- cgit 1.4.1