From 8f392abe700d05aea1ef584b1685c9a5d19b1686 Mon Sep 17 00:00:00 2001 From: Daniele Conventi Date: Tue, 23 Aug 2016 14:49:44 +0200 Subject: [PATCH] Fixed timestamp on logs --- realize/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/realize/app.go b/realize/app.go index 142c936..3fb4fd3 100644 --- a/realize/app.go +++ b/realize/app.go @@ -93,5 +93,5 @@ func (app *App) Information() { // Cewrites the log timestamp func (writer logWriter) Write(bytes []byte) (int, error) { - return fmt.Print(YellowS("[") + time.Now().UTC().Format("15:04:05") + YellowS("]") + string(bytes)) + return fmt.Print(YellowS("[") + time.Now().Format("15:04:05") + YellowS("]") + string(bytes)) }