Skip to content

Commit

Permalink
logging newline missing
Browse files Browse the repository at this point in the history
  • Loading branch information
metskem committed Oct 15, 2024
1 parent 088491f commit 0f79939
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cron/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ func StartHousekeeping() {
if tasks, err := conf.CfClient.Tasks.ListAll(conf.CfCtx, &taskListOptions); err != nil {
fmt.Println(err)
} else {
fmt.Printf("found %d cf tasks", len(tasks))
fmt.Printf("found %d cf tasks\n", len(tasks))
if err = db.UpdateState(tasks); err != nil {
fmt.Printf("failed to update histories state: %s\n", err)
}
Expand Down

0 comments on commit 0f79939

Please sign in to comment.