@agentuity/runtime 0.0.32 → 0.0.35

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/_server.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agentuity/runtime",
3
- "version": "0.0.32",
3
+ "version": "0.0.35",
4
4
  "type": "module",
5
5
  "main": "./src/index.ts",
6
6
  "types": "./dist/index.d.ts",
package/src/_server.ts CHANGED
@@ -233,7 +233,7 @@ export const createServer = <E extends Env>(app: Hono<E>, _config?: AppConfig) =
233
233
  // Handle synchronous exit event - can't do async work here
234
234
  process.on('exit', (code) => {
235
235
  if (!isShutdown) {
236
- otel.logger.info('process exiting with code %d before shutdown completed', code);
236
+ otel.logger.debug('process exiting with code %d before shutdown completed', code);
237
237
  }
238
238
  });
239
239