diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-09-12 06:46:12 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-09-12 06:52:35 +0900 |
| commit | f8760438446ee4210a479402d91018ad610bcf34 (patch) | |
| tree | ab8b3a1cbf69d2c2f42531fd786a480ca87f889e /internal/app/shim.go | |
| parent | 6265aea73a5f4933f4837bc1298c22fcd39b6f4f (diff) | |
internal/hlog: remove error wrapping
This was a stopgap solution that lasted for way too long. This finally removes it and prepares internal/app for some major changes.
Signed-off-by: Ophestra <cat@gensokyo.uk>
Diffstat (limited to 'internal/app/shim.go')
| -rw-r--r-- | internal/app/shim.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/internal/app/shim.go b/internal/app/shim.go index 960506f3..5eaf8333 100644 --- a/internal/app/shim.go +++ b/internal/app/shim.go @@ -155,11 +155,11 @@ func ShimMain() { } if err := z.Start(); err != nil { - hlog.PrintBaseError(err, "cannot start container:") + printMessageError("cannot start container:", err) os.Exit(1) } if err := z.Serve(); err != nil { - hlog.PrintBaseError(err, "cannot configure container:") + printMessageError("cannot configure container:", err) } if err := seccomp.Load( |
