diff --git a/pygeoweaver/pgw_log_config.py b/pygeoweaver/pgw_log_config.py index 21c591d..c523743 100644 --- a/pygeoweaver/pgw_log_config.py +++ b/pygeoweaver/pgw_log_config.py @@ -1,5 +1,6 @@ import inspect import logging +from logging.config import fileConfig import os @@ -26,7 +27,7 @@ def setup_logging(): with open(config_file, 'wt') as f: f.write(config_str) - logging.config.fileConfig(config_file) + fileConfig(config_file) os.remove(config_file) diff --git a/pyproject.toml b/pyproject.toml index 410f9e0..3a9301d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "pygeoweaver" -version = "1.0.8" +version = "1.0.9" authors = [{ name="Geoweaver team", email="geoweaver.app@gmail.com" }] description = "This is a wrapper package of the Geoweaver app." readme = "README.md"