@punks/backend-entity-manager 0.0.192 → 0.0.193

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/cjs/index.js CHANGED
@@ -1082,7 +1082,7 @@ class ServiceLocator {
1082
1082
  }
1083
1083
  const service = services[instanceName];
1084
1084
  if (!service && !options?.optional) {
1085
- throw new Error(`Service instance "${serviceName}" not found in ServiceLocator`);
1085
+ throw new Error(`Service "${serviceName}" instance "${instanceName}" not found in ServiceLocator -> Available: ${services ? Object.keys(services) : "none"}`);
1086
1086
  }
1087
1087
  return service;
1088
1088
  }