mirror of
https://github.com/openlibrecommunity/olcrtc.git
synced 2026-05-29 16:39:45 +00:00
12 lines
158 B
Go
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)
|
|
}
|
|
}
|