1
0
mirror of https://github.com/github/octodns.git synced 2024-05-11 05:55:00 +00:00

Correct some log messages

This commit is contained in:
Ross McFarland
2019-01-08 12:42:33 -08:00
parent 13b87faddc
commit 1712e689e9

View File

@@ -485,7 +485,7 @@ class DynProvider(BaseProvider):
.record_sets[0]
except IndexError:
# problems indicate a malformed ruleset, ignore it
self.log.warn('_populate_dynamic_traffic_director: '
self.log.warn('_populate_dynamic_pools: '
'malformed response_pool "%s" ignoring',
response_pool.label)
continue
@@ -525,7 +525,7 @@ class DynProvider(BaseProvider):
if fallback != 'default':
pools[pool]['fallback'] = fallback
else:
self.log.warn('_populate_dynamic_traffic_director: '
self.log.warn('_populate_dynamic_pools: '
'ruleset "%s" has no response_pools',
ruleset.label)
continue
@@ -553,7 +553,7 @@ class DynProvider(BaseProvider):
elif criteria_type == 'always':
pass
else:
self.log.warn('_populate_dynamic_traffic_director: '
self.log.warn('_populate_dynamic_rules: '
'unsupported criteria_type "%s", ignoring',
criteria_type)
continue