fix(logger): annotate singleton logger export comment for build verification

This commit is contained in:
2026-03-05 13:29:06 +00:00
parent 87ec55619a
commit d19f22255d
4 changed files with 10 additions and 3 deletions

View File

@@ -1,5 +1,12 @@
# Changelog # Changelog
## 2026-03-05 - 11.0.20 - fix(logger)
annotate singleton logger export comment for build verification
- Changed comment in ts/logger.ts to add '(build verification)'
- No functional code changes; only a comment update
- Intended to mark the export for build verification purposes
## 2026-03-05 - 11.0.19 - fix(dcrouter) ## 2026-03-05 - 11.0.19 - fix(dcrouter)
no changes no changes

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@serve.zone/dcrouter', name: '@serve.zone/dcrouter',
version: '11.0.19', version: '11.0.20',
description: 'A multifaceted routing service handling mail and SMS delivery functions.' description: 'A multifaceted routing service handling mail and SMS delivery functions.'
} }

View File

@@ -94,5 +94,5 @@ class StandardLogger {
} }
} }
// Export a singleton instance // Export a singleton instance (build verification)
export const logger = new StandardLogger(); export const logger = new StandardLogger();

View File

@@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@serve.zone/dcrouter', name: '@serve.zone/dcrouter',
version: '11.0.19', version: '11.0.20',
description: 'A multifaceted routing service handling mail and SMS delivery functions.' description: 'A multifaceted routing service handling mail and SMS delivery functions.'
} }