Initial QSfera import
This commit is contained in:
@@ -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())
|
||||
}
|
||||
Reference in New Issue
Block a user