From b06bdeba59aa235d3cce8e779588f03a26657440 Mon Sep 17 00:00:00 2001 From: Pradyumna Kaushik Date: Thu, 4 Oct 2018 13:39:30 -0400 Subject: [PATCH] Used println instead of printf if no args. --- scheduler.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scheduler.go b/scheduler.go index 02e3149..4c11387 100644 --- a/scheduler.go +++ b/scheduler.go @@ -218,7 +218,7 @@ func main() { return } - log.Printf("Received SIGINT...stopping") + log.Println("Received SIGINT...stopping") close(done) }() @@ -245,7 +245,7 @@ func main() { }() - log.Printf("Starting...") + log.Println("Starting...") if status, err := driver.Run(); err != nil { log.Printf("Framework stopped with status %s and error: %s\n", status.String(), err.Error()) }