Skip to content

Commit 90dc599

Browse files
committed
fix: change logging level to debug for HTTP server registration and startup
1 parent c982a9e commit 90dc599

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

packages/plugins/plugin-hono-server/src/hono-plugin.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ export class HonoServerPlugin implements Plugin {
7070
ctx.registerService('http.server', this.server);
7171
// Alias 'http-server' for backward compatibility
7272
ctx.registerService('http-server', this.server);
73-
ctx.logger.info('HTTP server service registered', { serviceName: 'http.server' });
73+
ctx.logger.debug('HTTP server service registered', { serviceName: 'http.server' });
7474
}
7575

7676
/**
@@ -93,7 +93,7 @@ export class HonoServerPlugin implements Plugin {
9393
prefix: apiPath // Use the calculated path
9494
});
9595

96-
ctx.logger.info('Mounting ObjectStack Runtime App', { prefix: apiPath });
96+
ctx.logger.debug('Mounting ObjectStack Runtime App', { prefix: apiPath });
9797
// Use the mount method we added to HonoHttpServer
9898
this.server.mount('/', app as any);
9999

@@ -104,7 +104,7 @@ export class HonoServerPlugin implements Plugin {
104104
// Start server on kernel:ready hook
105105
ctx.hook('kernel:ready', async () => {
106106
const port = this.options.port || 3000;
107-
ctx.logger.info('Starting HTTP server', { port });
107+
ctx.logger.debug('Starting HTTP server', { port });
108108

109109
await this.server.listen(port);
110110

0 commit comments

Comments
 (0)