where is MCP log?
Running java MCP server locally in vscode,but I can't find the java log file.here is my yml config:
logging:
pattern:
console:
file:
name: ${spring.application.name}.log
here is my mcp config:
"mcp-server-demo": {
"isActive": true,
"name": "mcp-server-demo",
"type": "stdio",
"command": "java",
"args": [
"-Dspring.ai.mcp.server.stdio=true",
"-jar",
"D:/github/mcpserver-weather/target/mcp-server-weather-0.0.1-SNAPSHOT.jar",
"--weather.api.api-key=xxxxxxx",
"> D:/mcp-serverlog.log >2&1"
]
}
Do I need to specify anything or config something in vscode? thanks~