package rpc2

import 

// DebugLog controls the printing of internal and I/O errors.
var DebugLog = false

func debugln( ...interface{}) {
	if DebugLog {
		log.Println(...)
	}
}