Re: [go-nuts] logger and timestamp

2017-01-06 Thread Tyler Compton
The log package defines a "standard logger" with some preconfigured flags to give you the date and time. I modified your Playground link to have the same flags as the standard logger: https://play.golang.org/p/lch7YIbe6T I used the SetFlags method and set it to LstdFlags, which is equal to the fl

[go-nuts] logger and timestamp

2017-01-06 Thread Tong Sun
Hi, Why using the standard `log` there is time-stamp in the output, but when using logger, there won't? Ref: https://play.golang.org/p/FaOU2KqXW6 log.Print("Hello, log file!") logger.Print("Hello, log file!") How can I add time-stamp output to logger? Thanks -- You received this message b