summaryrefslogblamecommitdiffstats
path: root/debug.go
blob: 56ed96fc9f2b00c51489e788894a254ce4fd9456 (plain) (tree)
1
2
3
4
5
6
7
8
9
10



                                        
                                        


             

                                                      




                                                                   








                                                        
// 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)
	}
}