mirror of
https://github.com/pion/webrtc.git
synced 2025-09-26 19:21:12 +08:00
12 lines
156 B
Go
12 lines
156 B
Go
package webrtc
|
|
|
|
import "fmt"
|
|
|
|
const specialLogEnabled = false
|
|
|
|
func specialLog(toLog ...interface{}) {
|
|
if specialLogEnabled {
|
|
fmt.Println(toLog...)
|
|
}
|
|
}
|