File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212 - ` BLOCK_VOLUME `
1313 - ` VENUE_SPECIFIC_VOLUME_1 `
1414- Added new publisher for Blue Ocean ATS (` OCEA_MEMOIR_OCEA ` )
15+ - Reduced the log level of end-of-interval ` SystemMsg ` records to the debug level
1516
1617## 0.69.0 - 2026-01-13
1718
Original file line number Diff line number Diff line change 1111from databento_dbn import Metadata
1212from databento_dbn import Schema
1313from databento_dbn import SType
14+ from databento_dbn import SystemCode
1415from databento_dbn import VersionUpgradePolicy
1516
1617from databento .common import cram
@@ -388,7 +389,12 @@ def _process_dbn(self, data: bytes) -> None:
388389 if record .is_heartbeat ():
389390 logger .debug ("gateway heartbeat" )
390391 else :
391- logger .info (
392+ if record .code == SystemCode .END_OF_INTERVAL :
393+ system_msg_level = logging .DEBUG
394+ else :
395+ system_msg_level = logging .INFO
396+ logger .log (
397+ system_msg_level ,
392398 "system message code=%s msg='%s'" ,
393399 record .code ,
394400 record .msg ,
You can’t perform that action at this time.
0 commit comments