Skip to content

Commit 12ffe7f

Browse files
authored
Merge pull request #130 from offspot/logs
"Tick processing started" log message now DEBUG instead of INFO
2 parents a1245ee + 7cce626 commit 12ffe7f

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Changed
11+
12+
- "Tick processing started" log message now DEBUG instead of INFO
13+
1014
## [0.3.0] - 2024-02-05
1115

1216
### Added

backend/src/offspot_metrics_backend/business/processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ def check_for_inactivity(self, session: Session):
123123
self.last_action = now
124124

125125
def _process_tick(self, now: datetime.datetime, session: Session):
126-
logger.info("Tick processing started")
126+
logger.debug("Tick processing started")
127127
self.last_tick_processed = Tick(now)
128128

129129
# Generate a ClockTick input

0 commit comments

Comments
 (0)