(ociswrapper): separate ociswrapper logs from ocis logs (#6776)

This commit is contained in:
Sawjan Gurung
2023-07-12 11:32:03 +05:45
committed by GitHub
parent 0661bc4aa7
commit db39d6b7aa
3 changed files with 35 additions and 22 deletions
+11
View File
@@ -0,0 +1,11 @@
package log
import "log"
func Println(message string) {
log.Println("[ociswrapper]", message)
}
func Panic(err error) {
log.Panic("[ociswrapper] ", err.Error())
}