@agentuity/runtime 0.0.32 → 0.0.33
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/_server.ts +1 -1
package/package.json
CHANGED
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.
|
|
236
|
+
otel.logger.debug('process exiting with code %d before shutdown completed', code);
|
|
237
237
|
}
|
|
238
238
|
});
|
|
239
239
|
|