diff options
Diffstat (limited to 'internal/early.go')
| -rw-r--r-- | internal/early.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/early.go b/internal/early.go index 218105f2..81ca49cd 100644 --- a/internal/early.go +++ b/internal/early.go @@ -2,9 +2,10 @@ package internal import ( "errors" - "fmt" "io/fs" "os" + + "git.ophivana.moe/security/fortify/internal/fmsg" ) const ( @@ -13,7 +14,7 @@ const ( var SdBootedV = func() bool { if v, err := SdBooted(); err != nil { - fmt.Println("warn: read systemd marker:", err) + fmsg.Println("cannot read systemd marker:", err) return false } else { return v |
