Skip to content

Instantly share code, notes, and snippets.

@nodirt
Created November 1, 2015 07:29
Show Gist options
  • Save nodirt/7b8a637bfdc410511750 to your computer and use it in GitHub Desktop.
Save nodirt/7b8a637bfdc410511750 to your computer and use it in GitHub Desktop.
// Package better is a better implementation of log.Logger
package better
type Logger struct {
}
func (l *Logger) Print(v ...interface{}) {
//....
}
// other methods
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment