aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/output.go
blob: 4e148688e2df3c6625e248443ef00e5bc107f6ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package internal

import (
	"git.gensokyo.uk/security/hakurei/container"
	"git.gensokyo.uk/security/hakurei/internal/hlog"
	"git.gensokyo.uk/security/hakurei/system"
)

func InstallOutput(verbose bool) {
	hlog.Store(verbose)
	container.SetOutput(hlog.Output{})
	system.SetOutput(hlog.Output{})
}