Merge pull request #49 from suin/patch-1

fix typo in README.md
This commit is contained in:
Simon Eskildsen 2014-08-14 23:27:44 +02:00
commit aa1c874a55
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() {