blob: a15be77d8b976763457ddccb09ca769b03386d03 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package internal
import (
"git.gensokyo.uk/security/hakurei"
"git.gensokyo.uk/security/hakurei/internal/hlog"
"git.gensokyo.uk/security/hakurei/system"
)
func InstallOutput(verbose bool) {
hlog.Store(verbose)
hakurei.SetOutput(hlog.Output{})
system.SetOutput(hlog.Output{})
}
|