1
0
mirror of https://github.com/go-gitea/gitea.git synced 2024-09-13 00:38:12 -04:00
gitea/modules/ldap/debug.go

25 lines
409 B
Go
Raw Normal View History

2014-09-07 20:04:47 -04:00
package ldap
import (
"log"
"github.com/gogits/gogs/modules/asn1-ber"
)
2014-12-06 20:22:48 -05:00
// debugging type
2014-09-07 20:04:47 -04: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)
}
}