Files
webrtc/special_logger.go

12 lines
156 B
Go

package webrtc
import "fmt"
const specialLogEnabled = false
func specialLog(toLog ...interface{}) {
if specialLogEnabled {
fmt.Println(toLog...)
}
}