aboutsummaryrefslogtreecommitdiff
path: root/debug.go
diff options
context:
space:
mode:
authorMarc Sauter <[email protected]>2014-02-04 23:04:24 +0100
committerSamuel Stauffer <[email protected]>2014-03-19 13:57:59 -0700
commit3bda2b4e55f7ff8ac8bba30e0d0c606ab11ffc7e (patch)
tree312230d177c5550c4d7f22c9ec1135edee58b10f /debug.go
parente2ff8b4459c465d415d3e10f166c901dab96b56f (diff)
connection handling
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)
+ }
+}