Created
March 7, 2018 20:30
-
-
Save rustyeddy/02396c41e9ed9fe6e08ab30ce3538f8d to your computer and use it in GitHub Desktop.
Go - Turn off logger timestamps
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func getLoggerNoTimestamps() Logger { | |
return log.New(os.Stderr, "", 0) | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Creates a new logger without timestamps.