Better logging

This commit is contained in:
2015-08-12 16:26:03 +02:00
parent 1e43741da2
commit 4d26150fb0
2 changed files with 1 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ type Logger struct {
// to make the logger accessible for modification
func NewLogger() *Logger {
return &Logger{log.New(os.Stdout, "[narco] ", 0)}
return &Logger{log.New(os.Stdout, "[narco] ", log.LstdFlags)}
}
type FooResponseWriter struct {