Skip to content

Instantly share code, notes, and snippets.

@rustyeddy
Created March 7, 2018 20:30
Show Gist options
  • Save rustyeddy/02396c41e9ed9fe6e08ab30ce3538f8d to your computer and use it in GitHub Desktop.
Save rustyeddy/02396c41e9ed9fe6e08ab30ce3538f8d to your computer and use it in GitHub Desktop.
Go - Turn off logger timestamps
func getLoggerNoTimestamps() Logger {
return log.New(os.Stderr, "", 0)
}
@rustyeddy
Copy link
Author

Creates a new logger without timestamps.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment