Created
November 1, 2015 07:29
-
-
Save nodirt/7b8a637bfdc410511750 to your computer and use it in GitHub Desktop.
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
// 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