@nsshunt/stsrunnerframework 2.0.23 → 2.0.24

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/index.mjs CHANGED
@@ -4884,7 +4884,9 @@ var WorkerRegistry = class {
4884
4884
  if (runnersMap) {
4885
4885
  if (runnersMap[runnerId]) {
4886
4886
  delete runnersMap[runnerId];
4887
- this.options.logger.debug(`DeleteRunner(): RunnerId: [${runnerId}] has been removed from this workerId: [${workerId}], Remaining Runners: [${Object.keys(worker.GetAllRunnersExMap()).length}]`);
4887
+ try {
4888
+ this.options.logger.debug(`DeleteRunner(): RunnerId: [${runnerId}] has been removed from this workerId: [${workerId}], Remaining Runners: [${Object.keys(worker.GetAllRunnersExMap()).length}]`);
4889
+ } catch (error) {}
4888
4890
  }
4889
4891
  }
4890
4892
  }