Skip to content

Commit 684b22d

Browse files
committed
log default config at info level
1 parent 836db31 commit 684b22d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def read(fname):
1212

1313
setup(
1414
name='netflix-spectator-py',
15-
version='0.1.16',
15+
version='0.1.17',
1616
description='Python library for reporting metrics to Atlas.',
1717
long_description=read('README.md'),
1818
long_description_content_type='text/markdown',
@@ -34,7 +34,7 @@ def read(fname):
3434
'Topic :: Software Development',
3535

3636
# Pick your license as you wish (should match "license" above)
37-
'License :: OSI Approved :: Apache Software License',
37+
'License :: OSI Approved :: Apache Software License',
3838

3939
# Specify the Python versions you support here. In particular, ensure
4040
# that you indicate whether you support Python 2, Python 3 or both.

spectator/registry.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
try:
1818
from spectatorconfig import default_config
1919
defaultConfig = default_config()
20-
logger.debug("loaded default config: %s", defaultConfig)
20+
logger.info("loaded default config: %s", defaultConfig)
2121
except:
2222
defaultConfig = {}
2323

0 commit comments

Comments
 (0)