aboutsummaryrefslogtreecommitdiffhomepage
path: root/internal/output.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/output.go')
-rw-r--r--internal/output.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/internal/output.go b/internal/output.go
index db37f55c..c85f1b51 100644
--- a/internal/output.go
+++ b/internal/output.go
@@ -2,11 +2,15 @@ package internal
import (
"git.gensokyo.uk/security/fortify/internal/fmsg"
+ "git.gensokyo.uk/security/fortify/internal/sandbox"
"git.gensokyo.uk/security/fortify/seccomp"
+ "git.gensokyo.uk/security/fortify/system"
)
func InstallFmsg(verbose bool) {
fmsg.Store(verbose)
+ sandbox.SetOutput(fmsg.Output{})
+ system.SetOutput(fmsg.Output{})
if verbose {
seccomp.SetOutput(fmsg.Verbose)
}