Skip to content

Commit

Permalink
annoying logging
Browse files Browse the repository at this point in the history
  • Loading branch information
ZihengSun committed Jul 4, 2024
1 parent 6c9ecc7 commit f67a69b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pygeoweaver/pgw_log_config.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import inspect
import logging
from logging.config import fileConfig
import os


Expand All @@ -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)


Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit f67a69b

Please sign in to comment.