commit ec9b4afe3a13b56a64378be46315e8143ed2922d
parent a24ca00d09f00cb29d59dba8b98f942a3ba8f03e
Author: lash <dev@holbrook.no>
Date: Sun, 12 Feb 2023 13:04:23 +0000
Downgrade config file read logline
Diffstat:
3 files changed, 4 insertions(+), 2 deletions(-)
diff --git a/CHANGELOG b/CHANGELOG
@@ -1,3 +1,5 @@
+0.6.4
+ - Downgrade logging of irrelevant logline for config tmp file read
0.6.3
- Avoid crash when None value of override dirs in instantiation
0.6.2
diff --git a/confini/config.py b/confini/config.py
@@ -213,7 +213,7 @@ class Config:
if re.match(r'.+\.ini$', filename) == None:
logg.debug('skipping file {}/{}'.format(d, filename))
continue
- logg.info('reading file {}/{}'.format(d, filename))
+ logg.debug('reading file {}/{}'.format(d, filename))
f = open(os.path.join(d, filename), 'rb')
while 1:
data = f.read()
diff --git a/setup.py b/setup.py
@@ -6,7 +6,7 @@ f.close()
setup(
name='confini',
- version='0.6.3',
+ version='0.6.4',
description='Parse, verify and merge all ini files in a single directory',
author='Louis Holbrook',
author_email='dev@holbrook.no',