package log /* import ( "log" } and import ( "go.wit.com/log" } Should work exactly the same. These are golang log functions that are not changed at all. The arguments are all just passed straight through so this package appears to work exactly like the original ones */ import ( origlog "log" ) func Println(a ...any) { origlog.Println(a...) } func Printf(s string, a ...any) { origlog.Printf(s, a...) } func Fatalf(s string, a ...any) { origlog.Fatalf(s, a...) } func Fatal(s string, a ...any) { origlog.Fatalf(s, a...) }