Skip to content

Commit

Permalink
Merge pull request #230 from craig8/issue/229-logging-issue
Browse files Browse the repository at this point in the history
Fixed #229
  • Loading branch information
schandrika authored Oct 12, 2024
2 parents 560e925 + 8f4db78 commit e926a55
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "volttron-core"
version = "2.0.0rc0"
version = "2.0.0rc1"
description = "VOLTTRON™ is an open source platform for distributed sensing and control. The platform provides services for collecting and storing data from buildings and devices and provides an environment for developing applications which interact with that data."
authors = ["volttron <[email protected]>"]
license = "Apache-2.0"
Expand All @@ -23,10 +23,13 @@ packages = [
{ include = "volttron/py.typed", from = "src" }
]

[tool.poetry.group.dev]
optional = true

[tool.poetry.dependencies]
poetry = "^1.8.2"
python = "^3.10"
gevent = "^24.2.1"
gevent = ">=24.2.1,<24.3"
PyYAML = "^6.0"
toml = "^0.10.2"
dateutils = "^0.6.12"
Expand Down
2 changes: 1 addition & 1 deletion src/volttron/server/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
# Finally set the logging parameter to the absolute path
sys.argv[index + 1] = logging_config.absolute().as_posix()

total_count += vcount
total_count += vcount

logging.config.dictConfig(get_default_logging_config(level=total_count))

Expand Down

0 comments on commit e926a55

Please sign in to comment.