Created
February 21, 2015 10:54
-
-
Save netmarkjp/dc9c0aade65ab7e8ed59 to your computer and use it in GitHub Desktop.
template.go
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
import ( | |
"os" | |
log "github.com/Sirupsen/logrus" | |
) | |
func main() { | |
log.SetOutput(os.Stderr) | |
log.SetLevel(log.DebugLevel) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment