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

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

func InstallFmsg(verbose bool) {
	hlog.Store(verbose)
	sandbox.SetOutput(hlog.Output{})
	system.SetOutput(hlog.Output{})
}