diff options
Diffstat (limited to 'debug.go')
-rw-r--r-- | debug.go | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/debug.go b/debug.go new file mode 100644 index 0000000..56ed96f --- /dev/null +++ b/debug.go @@ -0,0 +1,24 @@ +// File contains debugging functionality +package ldap + +import ( + "github.com/marcsauter/asn1-ber" + "log" +) + +// 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) + } +} |