Post

VS Code 로그 실시간 확인

목차


VS Code 로그 실시간 확인

Log Viewer extestion 다운로드

image

settings.json 수정

1
2
3
4
5
6
7
8
9
10
11
"logViewer.options": {
  "fileCheckInterval": 250,
  "fileListInterval": 2000
},
"logViewer.followTailMode": "auto",
"logViewer.watch": [
        {
            "title": "GW_Debug",
            "pattern": "/debug/sys.log.*"
        },
]

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

image

settings.json → files.associations

아래 항목 추가

1
"*.log": "plaintext"
This post is licensed under CC BY 4.0 by the author.