Improve stack trace logging

Shorten log signatures
Add task to download recorded autos
This commit is contained in:
nathanrsxtn
2022-02-25 01:33:32 -07:00
parent 9ccf4bcea2
commit 9d5d58f032
9 changed files with 117 additions and 93 deletions
+2 -8
View File
@@ -4,13 +4,6 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "java",
"name": "Launch Main",
"request": "launch",
"mainClass": "frc4388.robot.Main",
"projectName": "2022NoWayHome"
},
{
"type": "wpilib",
"name": "WPILib Desktop Debug",
@@ -21,7 +14,8 @@
"type": "wpilib",
"name": "WPILib roboRIO Debug",
"request": "launch",
"desktop": false
"desktop": false,
"postDebugTask": "downloadDeployDirectory"
}
]
}
+14 -5
View File
@@ -1,10 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "downloadDeployDirectory",
"type": "shell",
"command": "scp -pr lvuser@roboRIO-4388-FRC.local:/home/lvuser/deploy ./deploy"
}
{
"label": "downloadDeployDirectory",
"type": "shell",
"command": "scp -prv lvuser@roboRIO-4388-FRC.local:/home/lvuser/deploy ./src/main/",
"presentation": {
"echo": true,
"reveal": "always",
"focus": false,
"panel": "dedicated",
"showReuseMessage": true,
"clear": true
},
"problemMatcher": []
}
]
}