fix(sync-gcsr): Fix broken log statement
This commit is contained in:
parent
30586a108d
commit
15076ed228
1 changed files with 1 additions and 1 deletions
|
@ -68,7 +68,7 @@ func main() {
|
||||||
}
|
}
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Fatalln("Failed to %s repository:", action, err)
|
log.Fatalf("Failed to %s repository: %s", action, err)
|
||||||
} else {
|
} else {
|
||||||
log.Println("Initiating update loop")
|
log.Println("Initiating update loop")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue