where is MCP log?
23:46 13 Apr 2025

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~

java model-context-protocol