Browse Source

updated warning message

pull/1246/head
Mathurin Gagnon 8 months ago
parent
commit
4c84423917
No known key found for this signature in database GPG Key ID: C2FA638E0A56DB06
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      octodns/processor/filter.py

+ 3
- 1
octodns/processor/filter.py View File

@ -237,7 +237,9 @@ class _ValueBaseFilter(_FilterProcessor):
try:
values = [record.value.rdata_text]
except AttributeError:
self.log.warning(f"Record value is NoneType: {record.fqdn}")
self.log.warning(
f"Value processor ignoring record, value is NoneType: {record.fqdn}"
)
if any(value in self.exact for value in values):
self.matches(zone, record)
continue


Loading…
Cancel
Save