@ngn-net/nestjs-telescope 0.1.7 → 0.1.8

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.
@@ -94,6 +94,10 @@ let TelescopeService = class TelescopeService {
94
94
  }
95
95
  }
96
96
  }
97
+ catch (err) {
98
+ // Gracefully catch all database/metadata errors to protect host app stability.
99
+ // Avoid using console.log here as it might trigger infinite recursion in LogWatcher.
100
+ }
97
101
  finally {
98
102
  this.recording = false;
99
103
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ngn-net/nestjs-telescope",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },