@onlineapps/infrastructure-tools 1.0.14 → 1.0.15

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@onlineapps/infrastructure-tools",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "Infrastructure orchestration utilities for OA Drive infrastructure services (health tracking, queue initialization, service discovery)",
5
5
  "main": "src/index.js",
6
6
  "scripts": {
@@ -228,7 +228,11 @@ function createBaseClientAdapter(baseClient, serviceName, getHealthData, config,
228
228
  };
229
229
  }
230
230
 
231
- logger.error(`[InfrastructureHealth:${serviceName}] [PUBLISH] Failed to publish health check`, errorDetails);
231
+ // Log error with all details - pino needs explicit serialization
232
+ logger.error({
233
+ ...errorDetails,
234
+ msg: `[InfrastructureHealth:${serviceName}] [PUBLISH] ✗ Failed to publish health check`
235
+ });
232
236
  throw error;
233
237
  }
234
238
  };