BUGFIX: Remove debug statement left in by mistake (#3041)

This commit is contained in:
Tom Limoncelli 2024-07-09 14:29:27 -04:00 committed by GitHub
parent 7b286091d5
commit cff63b5d75
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 4 deletions

View file

@ -509,7 +509,7 @@ declare function CF_REDIRECT(source: string, destination: string, ...modifiers:
* This feature manages dynamic "Single Redirects". (Single Redirects can be
* static or dynamic but DNSControl only maintains dynamic redirects).
*
* Cloudflare documentation: https://developers.cloudflare.com/rules/url-forwarding/single-redirects/
* Cloudflare documentation: <https://developers.cloudflare.com/rules/url-forwarding/single-redirects/>
*
* ```javascript
* D("example.com", REG_MY_PROVIDER, DnsProvider(DSP_MY_PROVIDER),
@ -526,8 +526,7 @@ declare function CF_REDIRECT(source: string, destination: string, ...modifiers:
* * when: What Cloudflare sometimes calls the "rule expression".
* * then: The replacement expression.
*
* NOTE:
* The features [`CF_REDIRECT`](CF_REDIRECT.md) and [`CF_TEMP_REDIRECT`](CF_TEMP_REDIRECT.md) generate `CF_SINGLE_REDIRECT` if enabled in [`CLOUDFLAREAPI`](../../provider/cloudflareapi.md).
* NOTE: The features [`CF_REDIRECT`](CF_REDIRECT.md) and [`CF_TEMP_REDIRECT`](CF_TEMP_REDIRECT.md) generate `CF_SINGLE_REDIRECT` if enabled in [`CLOUDFLAREAPI`](../../provider/cloudflareapi.md).
*
* @see https://docs.dnscontrol.org/language-reference/domain-modifiers/service-provider-specific/cloudflare-dns/cf_single_redirect
*/

View file

@ -12,7 +12,7 @@ func PostProcess(domains []*models.DomainConfig) error {
var err error
for _, dc := range domains {
fmt.Printf("DOMAIN: %d %s\n", len(dc.Records), dc.Name)
//fmt.Printf("DOMAIN: %d %s\n", len(dc.Records), dc.Name)
for _, rawRec := range dc.RawRecords {
rec := &models.RecordConfig{