diff options
Diffstat (limited to 'internal/system/op.go')
| -rw-r--r-- | internal/system/op.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/internal/system/op.go b/internal/system/op.go index a9040187..67a637bf 100644 --- a/internal/system/op.go +++ b/internal/system/op.go @@ -2,8 +2,9 @@ package system import ( "errors" - "fmt" "sync" + + "git.ophivana.moe/security/fortify/internal/fmsg" ) const ( @@ -80,7 +81,7 @@ func (sys *I) Commit() error { if sp != nil { // rollback partial commit if err := sp.Revert(&Criteria{nil}); err != nil { - fmt.Println("fortify: errors returned reverting partial commit:", err) + fmsg.Println("errors returned reverting partial commit:", err) } } }() |
