Skip to content

Commit 7b69448

Browse files
Merge pull request #10 from superstreamlabs/master
release
2 parents de080dc + 36e512e commit 7b69448

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

pyproject.toml

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

55
[project]
66
name = "superstream-clients"
7-
version = "1.0.0"
7+
version = "1.0.1"
88
description = "Superstream optimisation library for Kafka producers"
99
authors = [{name = "Superstream Labs", email = "[email protected]"}]
1010
license = "Apache-2.0"

superclient/agent/interceptor.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ def init_patch(self, *args, **kwargs):
8585
current_val = kwargs.get(k)
8686
if current_val != v:
8787
if k in kwargs:
88-
logger.debug("Overriding configuration: {} ({} -> {})", k, current_val, v)
88+
logger.info("Overriding configuration: {} ({} -> {})", k, current_val, v)
8989
else:
90-
logger.debug("Overriding configuration: {} ((not set) -> {})", k, v)
90+
logger.info("Overriding configuration: {} ((not set) -> {})", k, v)
9191
kwargs[k] = v
9292

9393
# Set up reporting interval
@@ -209,9 +209,9 @@ def init_patch(self, *args, **kwargs):
209209
current_val = kwargs.get(k)
210210
if current_val != v:
211211
if k in kwargs:
212-
logger.debug("Overriding configuration: {} ({} -> {})", k, current_val, v)
212+
logger.info("Overriding configuration: {} ({} -> {})", k, current_val, v)
213213
else:
214-
logger.debug("Overriding configuration: {} ((not set) -> {})", k, v)
214+
logger.info("Overriding configuration: {} ((not set) -> {})", k, v)
215215
kwargs[k] = v
216216
report_interval = metadata.get("report_interval_ms") if metadata else _DEFAULT_REPORT_INTERVAL_MS
217217
tr = ProducerTracker(
@@ -437,9 +437,9 @@ def __init__(self, conf: Dict[str, Any], *args, **kwargs):
437437
current_val = conf.get(k)
438438
if current_val != v:
439439
if k in conf:
440-
logger.debug("Overriding configuration: {} ({} -> {})", k, current_val, v)
440+
logger.info("Overriding configuration: {} ({} -> {})", k, current_val, v)
441441
else:
442-
logger.debug("Overriding configuration: {} ((not set) -> {})", k, v)
442+
logger.info("Overriding configuration: {} ((not set) -> {})", k, v)
443443
conf[k] = v
444444

445445

0 commit comments

Comments
 (0)