update debug log

This commit is contained in:
Ivan Schaller 2023-11-10 17:07:55 +01:00
parent 61b1b47a96
commit 353791797d
1 changed files with 1 additions and 1 deletions

View File

@ -62,7 +62,7 @@ class NetBoxDNSSource(octodns.provider.base.BaseProvider):
"""Initialize the NetboxDNSSource."""
self.log = logging.getLogger(f"NetboxDNSSource[{id}]")
self.log.debug(
f"__init__: id={id}, url={url}, view={view}, replace_duplicates={replace_duplicates}"
f"__init__: id={id}, url={url}, view={view}, replace_duplicates={replace_duplicates}, make_absolute={make_absolute}"
)
super(NetBoxDNSSource, self).__init__(id)
self._api = pynetbox.core.api.Api(url, token)