Tidying up.

This commit is contained in:
Kyle
2015-09-22 03:43:33 -07:00
parent 35ded7bc60
commit 3fd30fef69
2 changed files with 15 additions and 2 deletions

View File

@@ -29,3 +29,16 @@ func Example() {
log.Notice("fare thee well")
olog.Print("all good journeys must come to an end")
}
func ExampleNewFromFile() {
log, err := logging.NewFromFile("file logger", logging.LevelNotice,
"example.log", "example.err", true)
if err != nil {
log.Fatalf("failed to open logger: %v", err)
}
log.Notice("hello, world")
log.Notice("some more things happening")
log.Warning("something suspicious has happened")
log.Alert("pick up that can, Citizen!")
}