mirror of
https://github.com/StackExchange/dnscontrol.git
synced 2025-09-11 23:54:28 +08:00
CLOUDFLARE: Error messages should indicate which cred entry (#1690)
This commit is contained in:
parent
e49f743846
commit
f24c250c46
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ func (c *cloudflareProvider) fetchDomainList() error {
|
|||
c.nameservers = map[string][]string{}
|
||||
zones, err := c.cfClient.ListZones(context.Background())
|
||||
if err != nil {
|
||||
return fmt.Errorf("failed fetching domain list from cloudflare: %s", err)
|
||||
return fmt.Errorf("failed fetching domain list from cloudflare(%q): %s", c.cfClient.APIEmail, err)
|
||||
}
|
||||
|
||||
for _, zone := range zones {
|
||||
|
|
Loading…
Add table
Reference in a new issue