fix(sync-gcsr): Fix broken log statement

This commit is contained in:
Vincent Ambo 2019-12-20 14:40:21 +00:00
parent 30586a108d
commit 15076ed228

View file

@ -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")
}