Skip to content

Commit 73b7eca

Browse files
blockloopvishr
authored andcommitted
correct wrong package reference (#809)
Discard is not part of the io package, it is part of ioutil
1 parent 8047be7 commit 73b7eca

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/content/guide/customization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ to `DEBUG`.
1919
`Echo#Logger.SetOutput(io.Writer)` can be used to set the output destination for
2020
the logger. Default value is `os.Stdout`
2121

22-
To completely disable logs use `Echo#Logger.SetOutput(io.Discard)` or `Echo#Logger.SetLevel(log.OFF)`
22+
To completely disable logs use `Echo#Logger.SetOutput(ioutil.Discard)` or `Echo#Logger.SetLevel(log.OFF)`
2323

2424
### Log Level
2525

0 commit comments

Comments
 (0)