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

import (
	"hakurei.app/container"
	"hakurei.app/internal/hlog"
	"hakurei.app/system"
)

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