dnscontrol/models/tdwarn.go
Tom Limoncelli 14e48b9b07
linting (#693)
Co-authored-by: Tom Limoncelli <tlimoncelli@stackoverflow.com>
2020-03-10 16:53:17 -04:00

15 lines
360 B
Go

package models
import "fmt"
var dotwarned = map[string]bool{}
// WarnNameserverDot prints a warning about issue 491 never more than once.
func WarnNameserverDot(p, w string) {
if dotwarned[p] {
return
}
fmt.Printf("Warning: provider %s could be improved. See https://github.com/StackExchange/dnscontrol/issues/491 (%s)\n", p, w)
dotwarned[p] = true
}