Merge pull request #5 from LuPo/main

fix log merge
This commit is contained in:
Jeffrey C. Ollie 2022-09-13 13:43:16 -05:00 committed by GitHub
commit d0a9447e4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -67,8 +67,8 @@ class NetBoxDNSSource(octodns.provider.base.BaseProvider):
self, id: int, url: str, token: str, view: str | None, ttl=3600, replace_duplicates: bool = False,
):
"""Initialize the NetboxDNSSource."""
self._log = logging.getLogger(f"NetboxDNSSource[{id}]")
self._log.debug(
self.log = logging.getLogger(f"NetboxDNSSource[{id}]")
self.log.debug(
f"__init__: id={id}, url={url}, view={view}, replace_duplicates={replace_duplicates}"
)
super(NetBoxDNSSource, self).__init__(id)