Skip to content

Commit

Permalink
Make log levels match LogLevel.cs (#11436)
Browse files Browse the repository at this point in the history
Looks like #11228 changed log levels
to match VS Code, but our unified settings json file wasn't updated.
Noticed today while trying to repro a bug and switching between new and
old options experiences.
  • Loading branch information
davidwengier authored Feb 4, 2025
2 parents b10bc23 + 2710d35 commit 6c6d839
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -168,31 +168,31 @@
},
"map": [
{
"result": "trace",
"result": "none",
"match": 0
},
{
"result": "debug",
"result": "trace",
"match": 1
},
{
"result": "information",
"result": "debug",
"match": 2
},
{
"result": "warning",
"result": "information",
"match": 3
},
{
"result": "error",
"result": "warning",
"match": 4
},
{
"result": "critical",
"result": "error",
"match": 5
},
{
"result": "none",
"result": "critical",
"match": 6
}
]
Expand Down

0 comments on commit 6c6d839

Please sign in to comment.