@ngn-net/nestjs-telescope 0.2.12 → 0.2.13
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.
package/dist/ui/manifest.json
CHANGED
|
@@ -18,8 +18,12 @@ let LogWatcher = class LogWatcher {
|
|
|
18
18
|
telescope;
|
|
19
19
|
constructor(telescope) {
|
|
20
20
|
this.telescope = telescope;
|
|
21
|
+
this.init();
|
|
21
22
|
}
|
|
22
23
|
onApplicationBootstrap() {
|
|
24
|
+
// Keep for framework interface compatibility
|
|
25
|
+
}
|
|
26
|
+
init() {
|
|
23
27
|
const self = this;
|
|
24
28
|
const originalStdoutWrite = process.stdout.write;
|
|
25
29
|
const originalStderrWrite = process.stderr.write;
|