13 lines
185 B
Go
Raw Normal View History

2021-11-22 16:05:02 +00:00
package rpc2
import "log"
// DebugLog controls the printing of internal and I/O errors.
var DebugLog = false
func debugln(v ...interface{}) {
if DebugLog {
log.Println(v...)
}
}