File: debug.go

package info (click to toggle)
golang-github-go-ldap-ldap 2.5.1-4
  • links: PTS, VCS
  • area: main
  • in suites: buster, experimental
  • size: 344 kB
  • sloc: makefile: 37; sh: 1
file content (24 lines) | stat: -rw-r--r-- 390 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package ldap

import (
	"log"

	"gopkg.in/asn1-ber.v1"
)

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