Fixed timestamp on logs

This commit is contained in:
Daniele Conventi 2016-08-23 14:49:44 +02:00
parent 9bfe9d7713
commit 8f392abe70
1 changed files with 1 additions and 1 deletions

View File

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