This repository has been archived on 2023-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
dex/vendor/gopkg.in/ldap.v2/debug.go

25 lines
390 B
Go
Raw Normal View History

2016-07-25 20:00:28 +00:00
package ldap
import (
"log"
"gopkg.in/asn1-ber.v1"
)
// debugging type
2016-07-25 20:00:28 +00:00
// - 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)
}
}