Skip to content

Commit 612c7d3

Browse files
committed
Update dev and stable
Update dev and stable version * Now new log file will replace old log not append
1 parent 9e94517 commit 612c7d3

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

dev.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,15 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "je_load_density_dev"
9-
version = "0.0.61"
9+
version = "0.0.62"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]
1313
description = "Load & Stress Automation Freamework"
1414
requires-python = ">=3.8"
1515
license = { text = "MIT" }
1616
dependencies = [
17-
"locust",
18-
"APScheduler",
17+
"locust", "APScheduler",
1918
]
2019
classifiers = [
2120
"Programming Language :: Python :: 3.8",

je_load_density/utils/logging/loggin_instance.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,6 @@
1010
stream_handler.setLevel(logging.WARNING)
1111
load_density_logger.addHandler(stream_handler)
1212
# File handler
13-
file_handler = logging.FileHandler("LoadDensity.log")
13+
file_handler = logging.FileHandler(filename="LoadDensity.log", mode="w")
1414
file_handler.setFormatter(formatter)
1515
load_density_logger.addHandler(file_handler)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66

77
[project]
88
name = "je_load_density"
9-
version = "0.0.51"
9+
version = "0.0.52"
1010
authors = [
1111
{ name = "JE-Chen", email = "[email protected]" },
1212
]

0 commit comments

Comments
 (0)