diff --git a/main.py b/main.py index 9569bc8..934cf81 100755 --- a/main.py +++ b/main.py @@ -104,6 +104,10 @@ def main(config, level, force_refresh): ovh_client = ovh.Client( **config['ovh'], ) + records = get_records(ovh_client, {'zone': config['zone']}) + logger.debug('Found records %d:', len(records)) + for r in records: + logger.debug(' - %s', repr(r)) records = [ r for r in get_records(ovh_client, {'zone': config['zone']})