mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-01-11 09:59:59 +08:00
14 lines
284 B
Go
14 lines
284 B
Go
|
package models
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
var dotwarned = map[string]bool{}
|
||
|
|
||
|
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
|
||
|
}
|