Created
October 24, 2020 00:23
-
-
Save msrivastav13/1f1f22a87687bafbf2ef68fff83cb641 to your computer and use it in GitHub Desktop.
This is task.json for tailing logs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "SFDX: Tail Logs", | |
"type": "shell", | |
"command": "sfdx", | |
"args": [ | |
"force:apex:log:tail", | |
"-c", | |
">", | |
"output.text" | |
], | |
"group": "build", | |
"presentation": { | |
"reveal": "always", | |
"panel": "shared" | |
}, | |
"problemMatcher": [] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment