Fix some quotes

This commit is contained in:
Simon Eskildsen 2013-10-16 15:28:51 -04:00
parent f7a4f6311b
commit bc7134c305
1 changed files with 4 additions and 4 deletions

View File

@ -22,13 +22,13 @@ created (see example below), such as the place to redirect output. Logging can
be done with the global logging module:
```go
logrus.Debug("Something debugworthy happened: %s", importantStuff")
logrus.Info("Something infoworthy happened: %s", importantStuff")
logrus.Debug("Something debugworthy happened: %s", importantStuff)
logrus.Info("Something infoworthy happened: %s", importantStuff)
logrus.Warning("Something bad happened: %s", importantStuff")
logrus.Warning("Something bad happened: %s", importantStuff)
// Reports to Airbrake
logrus.Fatal("Something fatal happened: %s", importantStuff")
logrus.Fatal("Something fatal happened: %s", importantStuff)
// Reports to Airbrake
// Then exits
```