blob: 02f9a7ce54ec4a8c472c6db5584d80adfc8d3245 (
plain) (
tree)
|
|
package ldap
import (
"log"
"github.com/SpruceHealth/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)
}
}
|