Skip to content

Instantly share code, notes, and snippets.

@azsde
Created July 17, 2018 12:49
Show Gist options
  • Save azsde/566ca038a98d455503bd6cb138249c14 to your computer and use it in GitHub Desktop.
Save azsde/566ca038a98d455503bd6cb138249c14 to your computer and use it in GitHub Desktop.
Log File Highligther Logcat Customization
"files.associations": {
"*logcat*": "log",
"*.log.*": "log"
},
"logFileHighlighter.customPatterns": [
{
"pattern": "^[0-9\\- :\\.]*V.*",
"foreground": "#d7dae0"
},
{
"pattern": "^[0-9\\- :\\.]*D.*",
"foreground": "#54C1E9"
},
{
"pattern": "^[0-9\\- :\\.]*I.*",
"foreground": "#8CD10D"
},
{
"pattern": "^[0-9\\- :\\.]*W.*",
"foreground": "#FAC848"
},
{
"pattern": "^[0-9\\- :\\.]*E.*",
"foreground": "#F95C5A"
},
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment