(ociswrapper): separate ociswrapper logs from ocis logs (#6776)
This commit is contained in:
@@ -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())
|
||||
}
|
||||
Reference in New Issue
Block a user