rebranding tests

This commit is contained in:
Viktor Scharf
2025-01-16 17:39:02 +01:00
committed by Viktor Scharf
parent 31965a8f9d
commit 9db4693a9e
243 changed files with 1621 additions and 1645 deletions
+15
View File
@@ -0,0 +1,15 @@
package log
import "log"
func Println(message string) {
log.Println("[ocwrapper]", message)
}
func Panic(err error) {
log.Panic("[ocwrapper]", err.Error())
}
func Fatalln(err error) {
log.Fatalln("[ocwrapper]", err.Error())
}