diff options
author | tmfkams <tmfkams@gmail.com> | 2014-01-19 23:04:16 +0100 |
---|---|---|
committer | Samuel Stauffer <samuel@descolada.com> | 2014-03-19 21:57:58 +0100 |
commit | e45f83457931e08f9f6d5aec48f51fd390a01eb8 (patch) | |
tree | d95a79f94932115bf5c0441f2eeb520959bbda0d /debugging.go | |
parent | Merge pull request #4 from bollenberger/master (diff) | |
download | ldap-e45f83457931e08f9f6d5aec48f51fd390a01eb8.tar ldap-e45f83457931e08f9f6d5aec48f51fd390a01eb8.tar.gz ldap-e45f83457931e08f9f6d5aec48f51fd390a01eb8.tar.bz2 ldap-e45f83457931e08f9f6d5aec48f51fd390a01eb8.tar.lz ldap-e45f83457931e08f9f6d5aec48f51fd390a01eb8.tar.xz ldap-e45f83457931e08f9f6d5aec48f51fd390a01eb8.tar.zst ldap-e45f83457931e08f9f6d5aec48f51fd390a01eb8.zip |
Diffstat (limited to 'debugging.go')
-rw-r--r-- | debugging.go | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/debugging.go b/debugging.go new file mode 100644 index 0000000..cefbfad --- /dev/null +++ b/debugging.go @@ -0,0 +1,31 @@ +// Copyright 2011 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// File contains debugging functionality +package ldap + +import ( + "github.com/tmfkams/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 { + // TODO: DEBUG prefix + log.Printf(format, args...) + } +} + +func (debug debugging) PrintPacket(packet *ber.Packet) { + if debug { + ber.PrintPacket(packet) + } +} |