Files
olcrtc/ui/logger.go
2026-04-10 20:53:30 +03:00

12 lines
158 B
Go

package main
import "fmt"
func log(msg string, args ...interface{}) {
if len(args) > 0 {
fmt.Printf(msg+"\n", args...)
} else {
fmt.Println(msg)
}
}