@xmoxmo/bncr 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/channel.ts +3 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xmoxmo/bncr",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "license": "MIT",
package/src/channel.ts CHANGED
@@ -502,7 +502,9 @@ class BncrBridgeRuntime {
502
502
  const summary = this.buildRegisterTraceSummary();
503
503
  if (summary.postWarmupRegisterCount > 0) this.captureDriftSnapshot(summary);
504
504
 
505
- this.api.logger.info?.(`[bncr-register-trace] ${JSON.stringify(trace)}`);
505
+ if (BNCR_DEBUG_VERBOSE) {
506
+ this.api.logger.info?.(`[bncr-register-trace] ${JSON.stringify(trace)}`);
507
+ }
506
508
  }
507
509
 
508
510
  private createLeaseId() {