aboutsummaryrefslogtreecommitdiffhomepage
path: root/error.go
diff options
context:
space:
mode:
authorOphestra Umiker <cat@ophivana.moe>2024-10-26 23:09:32 +0900
committerOphestra Umiker <cat@ophivana.moe>2024-10-26 23:09:32 +0900
commitae1a102882103221ef842176dfd8cb1090d5f591 (patch)
tree16f34686bac5564998a9a0e84be96d83ed3e59bd /error.go
parent093e99d062f873dc9d83b1f76a156c1ee4275c57 (diff)
fmsg: support temporarily withholding output
Trying to print to a shared stdout is a terrible idea. This change makes it possible to withhold output for the lifetime of the sandbox. Signed-off-by: Ophestra Umiker <cat@ophivana.moe>
Diffstat (limited to 'error.go')
-rw-r--r--error.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/error.go b/error.go
index 112427a5..18f50027 100644
--- a/error.go
+++ b/error.go
@@ -2,7 +2,6 @@ package main
import (
"errors"
- "fmt"
"git.ophivana.moe/security/fortify/internal/app"
"git.ophivana.moe/security/fortify/internal/fmsg"
@@ -51,6 +50,6 @@ func logBaseError(err error, message string) {
if fmsg.AsBaseError(err, &e) {
fmsg.Print(e.Message())
} else {
- fmt.Println(message, err)
+ fmsg.Println(message, err)
}
}