[MM-19422] Add SQL trace and LDAP trace output to both console and server logs (#13190)
* Add MLOG for sql store * Update printf function * Update store/sqlstore/supplier.go Co-Authored-By: Martin Kraft <martin@upspin.org> * Update go mod * update go mod and tidy it up * update vendor folder
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
a83df931b9
Коммит
de0672937c
19
vendor/github.com/mattermost/ldap/debug.go
сгенерированный
поставляемый
19
vendor/github.com/mattermost/ldap/debug.go
сгенерированный
поставляемый
@@ -1,24 +1,37 @@
|
||||
package ldap
|
||||
|
||||
import (
|
||||
"bytes"
|
||||
"log"
|
||||
|
||||
"gopkg.in/asn1-ber.v1"
|
||||
ber "github.com/go-asn1-ber/asn1-ber"
|
||||
)
|
||||
|
||||
const LDAP_TRACE_PREFIX = "ldap-trace: "
|
||||
|
||||
// debugging type
|
||||
// - has a Printf method to write the debug output
|
||||
type debugging bool
|
||||
|
||||
// write debug output
|
||||
// Enable controls debugging mode.
|
||||
func (debug *debugging) Enable(b bool) {
|
||||
*debug = debugging(b)
|
||||
}
|
||||
|
||||
// Printf writes debug output.
|
||||
func (debug debugging) Printf(format string, args ...interface{}) {
|
||||
if debug {
|
||||
format = LDAP_TRACE_PREFIX + format
|
||||
log.Printf(format, args...)
|
||||
}
|
||||
}
|
||||
|
||||
// PrintPacket dumps a packet.
|
||||
func (debug debugging) PrintPacket(packet *ber.Packet) {
|
||||
if debug {
|
||||
ber.PrintPacket(packet)
|
||||
var b bytes.Buffer
|
||||
ber.WritePacket(&b, packet)
|
||||
textToPrint := LDAP_TRACE_PREFIX + b.String()
|
||||
log.Printf(textToPrint)
|
||||
}
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user