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


            
             
 
                                        

 

                                                      




                                                                   








                                                        
package ldap

import (
	"log"

	"github.com/johnweldon/asn1-ber"
)

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