diff --git a/CHANGELOG.md b/CHANGELOG.md index ed95a32..82a91ef 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,10 @@ to do so, but weren't. There was an ordering before, but it was essentially arbitrarily picked. +#### Stuff + +* Manager includes the octoDNS version in its init log line + ## v0.9.16 - 2022-03-04 - Manage the root of the problem #### Noteworthy changes diff --git a/octodns/manager.py b/octodns/manager.py index c8a4263..d69fd60 100644 --- a/octodns/manager.py +++ b/octodns/manager.py @@ -11,6 +11,7 @@ from os import environ from sys import stdout import logging +from . import __VERSION__ from .provider.base import BaseProvider from .provider.plan import Plan from .provider.yaml import SplitYamlProvider, YamlProvider @@ -84,7 +85,8 @@ class Manager(object): return len(plan.changes[0].record.zone.name) if plan.changes else 0 def __init__(self, config_file, max_workers=None, include_meta=False): - self.log.info('__init__: config_file=%s', config_file) + self.log.info('__init__: config_file=%s (octoDNS %s)', config_file, + __VERSION__) # Read our config file with open(config_file, 'r') as fh: