diff options
Diffstat (limited to 'modules/ldap/debug.go')
-rw-r--r-- | modules/ldap/debug.go | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/modules/ldap/debug.go b/modules/ldap/debug.go deleted file mode 100644 index 67856fe7a6..0000000000 --- a/modules/ldap/debug.go +++ /dev/null @@ -1,24 +0,0 @@ -package ldap - -import ( - "log" - - "github.com/gogits/gogs/modules/asn1-ber" -) - -// 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) - } -} |