fix typo in README.md

This commit is contained in:
suin 2014-08-06 12:09:02 +09:00
parent d1c2d610bd
commit a0dea8c09d
1 changed files with 3 additions and 3 deletions

View File

@ -77,17 +77,17 @@ import (
func init() { func init() {
// Log as JSON instead of the default ASCII formatter. // Log as JSON instead of the default ASCII formatter.
log.SetFormatter(logrus.JSONFormatter) log.SetFormatter(&log.JSONFormatter{})
// Use the Airbrake hook to report errors that have Error severity or above to // Use the Airbrake hook to report errors that have Error severity or above to
// an exception tracker. You can create custom hooks, see the Hooks section. // an exception tracker. You can create custom hooks, see the Hooks section.
log.AddHook(logrus_airbrake.AirbrakeHook) log.AddHook(logrus_airbrake.AirbrakeHook)
// Output to stderr instead of stdout, could also be a file. // Output to stderr instead of stdout, could also be a file.
log.SetOuput(os.Stderr) log.SetOutput(os.Stderr)
// Only log the warning severity or above. // Only log the warning severity or above.
log.SetLevel(logrus.WarnLevel) log.SetLevel(log.WarnLevel)
} }
func main() { func main() {