JHH9232 Blog

VS Code 로그 실시간 확인


|

목차


VS Code 로그 실시간 확인

Log Viewer extestion 다운로드

image

settings.json 수정

"logViewer.options": {
  "fileCheckInterval": 250,
  "fileListInterval": 2000
},
"logViewer.followTailMode": "auto",
"logViewer.watch": [
        {
            "title": "GW_Debug",
            "pattern": "/debug/sys.log.*"
        },
]

로그파일 하이라이팅 없애기

image

settings.json → files.associations

아래 항목 추가

"*.log": "plaintext"

Comments