forked from security/hakurei
14 lines
284 B
Go
14 lines
284 B
Go
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{})
|
|
}
|