ociswrapper: retry restarting ocis if it dies

This commit is contained in:
Saw-jan
2023-08-21 09:55:49 +05:45
parent f0ed33d348
commit 3c97bc5c53
2 changed files with 30 additions and 10 deletions

View File

@@ -7,5 +7,9 @@ func Println(message string) {
}
func Panic(err error) {
log.Panic("[ociswrapper] ", err.Error())
log.Panic("[ociswrapper]", err.Error())
}
func Fatalln(err error) {
log.Fatalln("[ociswrapper]", err.Error())
}