Browse Source

Add the number of changes and zone name to "making changes"

pull/671/head
Ross McFarland 5 years ago
parent
commit
4081c7b31b
No known key found for this signature in database GPG Key ID: 61C10C4FC8FE4A89
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      octodns/provider/base.py

+ 4
- 1
octodns/provider/base.py View File

@ -91,7 +91,10 @@ class BaseProvider(BaseSource):
self.log.info('apply: disabled') self.log.info('apply: disabled')
return 0 return 0
self.log.info('apply: making changes')
zone_name = plan.desired.name
num_changes = len(plan.changes)
self.log.info('apply: making %d changes to %s', num_changes,
zone_name)
self._apply(plan) self._apply(plan)
return len(plan.changes) return len(plan.changes)


Loading…
Cancel
Save