diff options
author | Vincent Ambo <tazjin@google.com> | 2019-12-20T14·40+0000 |
---|---|---|
committer | Vincent Ambo <tazjin@google.com> | 2019-12-20T14·40+0000 |
commit | 15076ed22888844a378c7255c257adef37233485 (patch) | |
tree | bd22d96ca09461de3d1f0c5cffafaf6f2255adb1 | |
parent | 30586a108d489bd98fb240bcf48e8f3620c49176 (diff) |
fix(sync-gcsr): Fix broken log statement r/216
-rw-r--r-- | services/sync-gcsr/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/sync-gcsr/main.go b/services/sync-gcsr/main.go index eb9df80f6d55..daec76b3464b 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") } |