Associate this example with what it's an example for

This commit is contained in:
Edward Muller
2019-10-13 17:41:41 -07:00
parent 39a5ad1294
commit f9951ccddd
3 changed files with 7 additions and 5 deletions
+3 -2
View File
@@ -1,8 +1,9 @@
package logrus_test
import (
"github.com/sirupsen/logrus"
"os"
"github.com/sirupsen/logrus"
)
var (
@@ -21,7 +22,7 @@ func (h *GlobalHook) Fire(e *logrus.Entry) error {
return nil
}
func ExampleGlobalVariableHook() {
func ExampleGlobalHook() {
l := logrus.New()
l.Out = os.Stdout
l.Formatter = &logrus.TextFormatter{DisableTimestamp: true, DisableColors: true}