Spring boot app logs displays in debug terminal instead of regular terminal when started normally

일반 스프링 부트 앱 시작에 대한 로그가 터미널 대신 디버그 콘솔에 표시되는 이유를 찾았습니다. VS Code에는 로그가 표시되어야 하는 위치를 정의하는 (콘솔 매개변수)를 정의하는 launch.json 파일이 있습니다.

다음과 같이 정의되었습니다.

"console": "internalConsole",

나는 그것을 바꿨다

"console": "integratedTerminal",

이것은 내 문제를 해결했습니다.