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

Fix long lines. Change log to debug

This commit is contained in:
Piotr Pieprzycki
2020-07-15 22:36:30 +03:00
parent 41d7ef6601
commit 2680b024bd

View File

@@ -419,8 +419,9 @@ class AzureProvider(BaseProvider):
if typ in ['A', 'CNAME']:
if self._check_for_alias(azrecord, typ):
self.log.info(
'This entry is an Azure alias. Skipping. zone=%s record=%s, type=%s', zone_name, record_name, typ)
self.log.debug(
'This entry is an Azure alias. Skipping. zone=%s record=%s, type=%s',
zone_name, record_name, typ)
continue
data = getattr(self, '_data_for_{}'.format(typ))
@@ -436,7 +437,8 @@ class AzureProvider(BaseProvider):
return exists
def _check_for_alias(self, azrecord, typ):
if azrecord.target_resource.id and not azrecord.arecords and not azrecord.arecords and not azrecord.cname_record:
if (azrecord.target_resource.id and not azrecord.arecords
and not azrecord.arecords and not azrecord.cname_record):
return True
return False