maddy/maddy_debug.go
fox.cpp 48e21f566e
Extend .debug.* flags and hide them by default
Allow to override DNS resolver address via the -debug.dnsoverride flag
and SMTP port via -debug.smtpport.

All flags are not available unless maddy is built using the 'debugflags'
tag.
2019-12-13 17:31:35 +03:00

11 lines
109 B
Go

//+build debugflags
package maddy
import (
_ "net/http/pprof"
)
func init() {
enableDebugFlags = true
}