Browse Source

De-lint an aggressively-long log line

pull/689/head
Christian Funkhouser 5 years ago
parent
commit
ada61f8d76
No known key found for this signature in database GPG Key ID: B41C144625325CF1
1 changed files with 6 additions and 4 deletions
  1. +6
    -4
      octodns/manager.py

+ 6
- 4
octodns/manager.py View File

@ -269,10 +269,12 @@ class Manager(object):
def sync(self, eligible_zones=[], eligible_sources=[], eligible_targets=[],
dry_run=True, force=False, plan_output_fh=stdout):
self.log.info('sync: eligible_zones=%s, eligible_targets=%s, '
'dry_run=%s, force=%s, plan_output_fh=%s',
eligible_zones, eligible_targets, dry_run, force,
getattr(plan_output_fh, 'name', plan_output_fh.__class__.__name__))
self.log.info(
'sync: eligible_zones=%s, eligible_targets=%s, dry_run=%s, '
'force=%s, plan_output_fh=%s',
eligible_zones, eligible_targets, dry_run, force,
getattr(plan_output_fh, 'name', plan_output_fh.__class__.__name__))
zones = self.config['zones'].items()
if eligible_zones:


Loading…
Cancel
Save