akanjs 3.0.0-alpha.23 → 3.0.0-alpha.24

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": "akanjs",
3
- "version": "3.0.0-alpha.23",
3
+ "version": "3.0.0-alpha.24",
4
4
  "sourceType": "module",
5
5
  "type": "module",
6
6
  "publishConfig": {
@@ -14,7 +14,7 @@ export class ShutdownManager {
14
14
 
15
15
  for (const signal of signals) {
16
16
  process.on(signal, async () => {
17
- logger.info(`Received ${signal}, starting graceful shutdown...`);
17
+ logger.debug(`Received ${signal}, starting graceful shutdown...`);
18
18
  try {
19
19
  await onShutdown();
20
20
  process.exit(0);
@@ -138,7 +138,7 @@ export class McpRouter {
138
138
  try {
139
139
  const { tools, prompts, resourceTemplates, refusals, undescribed } = this.#getDocument();
140
140
  const counts = `tools=${tools.length} prompts=${prompts.length} resourceTemplates=${resourceTemplates.length}`;
141
- McpRouter.logger.info(`MCP catalogue: ${counts}${this.#props.readOnly ? " (read-only deployment)" : ""}`);
141
+ McpRouter.logger.debug(`MCP catalogue: ${counts}${this.#props.readOnly ? " (read-only deployment)" : ""}`);
142
142
 
143
143
  if (!tools.length && !prompts.length)
144
144
  McpRouter.logger.warn(