@nxtedition/lib 19.14.0 → 19.14.2
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/app.js +10 -10
- package/package.json +1 -1
- package/trace.js +0 -1
package/app.js
CHANGED
|
@@ -549,7 +549,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
549
549
|
{
|
|
550
550
|
id: 'app:couch',
|
|
551
551
|
level: 30,
|
|
552
|
-
msg: '
|
|
552
|
+
msg: 'Couch: connected',
|
|
553
553
|
},
|
|
554
554
|
]
|
|
555
555
|
} catch (err) {
|
|
@@ -558,7 +558,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
558
558
|
id: 'app:couch',
|
|
559
559
|
level: 40,
|
|
560
560
|
code: err.code,
|
|
561
|
-
msg: '
|
|
561
|
+
msg: 'Couch: ' + err.message,
|
|
562
562
|
},
|
|
563
563
|
]
|
|
564
564
|
}
|
|
@@ -575,7 +575,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
575
575
|
{
|
|
576
576
|
id: 'app:ds_connection_state',
|
|
577
577
|
level: 30,
|
|
578
|
-
msg: '
|
|
578
|
+
msg: 'Deepstream: connected',
|
|
579
579
|
data: { connectionState },
|
|
580
580
|
},
|
|
581
581
|
]
|
|
@@ -583,7 +583,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
583
583
|
{
|
|
584
584
|
id: 'app:ds_connection_state',
|
|
585
585
|
level: 40,
|
|
586
|
-
msg: '
|
|
586
|
+
msg: 'Deepstream: connecting',
|
|
587
587
|
data: { connectionState },
|
|
588
588
|
},
|
|
589
589
|
],
|
|
@@ -600,7 +600,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
600
600
|
id: 'app:ds_record_records',
|
|
601
601
|
level: 40,
|
|
602
602
|
code: 'NXT_DEEPSTREAM_RECORDS_RECORDS',
|
|
603
|
-
msg: '
|
|
603
|
+
msg: 'Deepstream: ' + ds.stats.record.records + ' records',
|
|
604
604
|
})
|
|
605
605
|
}
|
|
606
606
|
|
|
@@ -609,7 +609,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
609
609
|
id: 'app:ds_record_pruning',
|
|
610
610
|
level: 40,
|
|
611
611
|
code: 'NXT_DEEPSTREAM_RECORDS_PRUNING',
|
|
612
|
-
msg: '
|
|
612
|
+
msg: 'Deepstream: ' + ds.stats.record.pruning + ' pruning',
|
|
613
613
|
})
|
|
614
614
|
}
|
|
615
615
|
|
|
@@ -618,7 +618,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
618
618
|
id: 'app:ds_record_pending',
|
|
619
619
|
level: 40,
|
|
620
620
|
code: 'NXT_DEEPSTREAM_RECORDS_PENDING',
|
|
621
|
-
msg: '
|
|
621
|
+
msg: 'Deepstream: ' + ds.stats.record.pending + ' pending',
|
|
622
622
|
})
|
|
623
623
|
}
|
|
624
624
|
|
|
@@ -627,7 +627,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
627
627
|
id: 'app:ds_record_updating',
|
|
628
628
|
level: 40,
|
|
629
629
|
code: 'NXT_DEEPSTREAM_RECORDS_UPDATING',
|
|
630
|
-
msg: '
|
|
630
|
+
msg: 'Deepstream: ' + ds.stats.record.updating + ' updating',
|
|
631
631
|
})
|
|
632
632
|
}
|
|
633
633
|
|
|
@@ -636,7 +636,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
636
636
|
id: 'app:ds_record_patching',
|
|
637
637
|
level: 40,
|
|
638
638
|
code: 'NXT_DEEPSTREAM_RECORDS_PATCHING',
|
|
639
|
-
msg: '
|
|
639
|
+
msg: 'Deepstream: ' + ds.stats.record.patching + ' patching',
|
|
640
640
|
})
|
|
641
641
|
}
|
|
642
642
|
|
|
@@ -735,7 +735,7 @@ export function makeApp(appConfig, onTerminate) {
|
|
|
735
735
|
}
|
|
736
736
|
}
|
|
737
737
|
|
|
738
|
-
if (appConfig.trace
|
|
738
|
+
if (appConfig.trace) {
|
|
739
739
|
const traceConfig = { ...appConfig.trace, ...config.trace }
|
|
740
740
|
if (traceConfig.url) {
|
|
741
741
|
trace = makeTrace({ ...traceConfig, destroyers: appDestroyers, logger, serviceName })
|
package/package.json
CHANGED