@onlineapps/service-wrapper 2.0.19 → 2.0.20
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/package.json +1 -1
- package/src/ServiceWrapper.js +3 -3
package/package.json
CHANGED
package/src/ServiceWrapper.js
CHANGED
|
@@ -686,7 +686,7 @@ class ServiceWrapper {
|
|
|
686
686
|
|
|
687
687
|
const { name: serviceName, version: serviceVersion } = this.config.service;
|
|
688
688
|
|
|
689
|
-
|
|
689
|
+
console.log('[ServiceWrapper] Checking validation proof...');
|
|
690
690
|
|
|
691
691
|
const orchestrator = new ValidationOrchestrator({
|
|
692
692
|
serviceRoot: this.serviceRoot,
|
|
@@ -702,9 +702,9 @@ class ServiceWrapper {
|
|
|
702
702
|
}
|
|
703
703
|
|
|
704
704
|
if (result.skipped) {
|
|
705
|
-
|
|
705
|
+
console.log('[ServiceWrapper] ✓ Using existing validation proof');
|
|
706
706
|
} else {
|
|
707
|
-
|
|
707
|
+
console.log('[ServiceWrapper] ✓ Validation completed successfully');
|
|
708
708
|
}
|
|
709
709
|
|
|
710
710
|
// Store proof for registration
|