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.
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@ export class ShutdownManager {
|
|
|
14
14
|
|
|
15
15
|
for (const signal of signals) {
|
|
16
16
|
process.on(signal, async () => {
|
|
17
|
-
logger.
|
|
17
|
+
logger.debug(`Received ${signal}, starting graceful shutdown...`);
|
|
18
18
|
try {
|
|
19
19
|
await onShutdown();
|
|
20
20
|
process.exit(0);
|
package/server/mcp/McpRouter.ts
CHANGED
|
@@ -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.
|
|
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(
|