blob: cffaa7115fea712f8be5d6036b3d8c90d56ebc4e (
plain) (
tree)
|
|
package ldap
import (
"log"
"4a.si/asn1-ber"
)
// debbuging type
// - has a Printf method to write the debug output
type debugging bool
// write debug output
func (debug debugging) Printf(format string, args ...interface{}) {
if debug {
log.Printf(format, args...)
}
}
func (debug debugging) PrintPacket(packet *ber.Packet) {
if debug {
ber.PrintPacket(packet)
}
}
|