fix log merge

This commit is contained in:
Lukasz Polanski 2022-09-13 12:02:17 +02:00
parent b2adb74e7a
commit f0b502a74f
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)