mirror of
https://github.com/go-gitea/gitea.git
synced 2024-10-31 08:37:35 -04:00
22770c324d
Signed-off-by: Andrew Thornton <art27@cantab.net>
25 lines
390 B
Go
25 lines
390 B
Go
package ldap
|
|
|
|
import (
|
|
"log"
|
|
|
|
"gopkg.in/asn1-ber.v1"
|
|
)
|
|
|
|
// debugging 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)
|
|
}
|
|
}
|