summaryrefslogtreecommitdiffstats
path: root/debug.go
diff options
context:
space:
mode:
authorMarc Sauter <marc.sauter@bluewin.ch>2014-02-04 23:04:24 +0100
committerSamuel Stauffer <samuel@descolada.com>2014-03-19 21:57:59 +0100
commit3bda2b4e55f7ff8ac8bba30e0d0c606ab11ffc7e (patch)
tree312230d177c5550c4d7f22c9ec1135edee58b10f /debug.go
parentrename (diff)
downloadldap-3bda2b4e55f7ff8ac8bba30e0d0c606ab11ffc7e.tar
ldap-3bda2b4e55f7ff8ac8bba30e0d0c606ab11ffc7e.tar.gz
ldap-3bda2b4e55f7ff8ac8bba30e0d0c606ab11ffc7e.tar.bz2
ldap-3bda2b4e55f7ff8ac8bba30e0d0c606ab11ffc7e.tar.lz
ldap-3bda2b4e55f7ff8ac8bba30e0d0c606ab11ffc7e.tar.xz
ldap-3bda2b4e55f7ff8ac8bba30e0d0c606ab11ffc7e.tar.zst
ldap-3bda2b4e55f7ff8ac8bba30e0d0c606ab11ffc7e.zip
Diffstat (limited to 'debug.go')
-rw-r--r--debug.go24
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)
+ }
+}