Skip to content

Commit d70e098

Browse files
committed
fix: change console type
1 parent f04e9a6 commit d70e098

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

notion/src/index.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ async function main() {
10751075
process.exit(1);
10761076
}
10771077

1078-
console.error("Starting Notion MCP Server...");
1078+
console.info("Starting Notion MCP Server...");
10791079
const server = new Server(
10801080
{
10811081
name: "Notion MCP Server",
@@ -1354,7 +1354,7 @@ async function main() {
13541354
);
13551355

13561356
server.setRequestHandler(ListToolsRequestSchema, async () => {
1357-
console.error("Received ListToolsRequest");
1357+
console.info("Received ListToolsRequest");
13581358
return {
13591359
tools: [
13601360
appendBlockChildrenTool,
@@ -1379,10 +1379,10 @@ async function main() {
13791379
});
13801380

13811381
const transport = new StdioServerTransport();
1382-
console.error("Connecting server to transport...");
1382+
console.info("Connecting server to transport...");
13831383
await server.connect(transport);
13841384

1385-
console.error("Notion MCP Server running on stdio");
1385+
console.info("Notion MCP Server running on stdio");
13861386
}
13871387

13881388
main().catch((error) => {

0 commit comments

Comments
 (0)