mirror of
https://github.com/wpilibsuite/allwpilib
synced 2026-06-21 01:01:43 +00:00
[wpiutil] SendableRegistry: Print exception stacktrace (#3620)
This commit is contained in:
@@ -494,11 +494,8 @@ public class SendableRegistry {
|
||||
if (cause != null) {
|
||||
throwable = cause;
|
||||
}
|
||||
System.out.println(
|
||||
"Unhandled exception calling LiveWindow for "
|
||||
+ comp.m_name
|
||||
+ ": "
|
||||
+ throwable.toString());
|
||||
System.err.println("Unhandled exception calling LiveWindow for " + comp.m_name + ": ");
|
||||
throwable.printStackTrace();
|
||||
comp.m_liveWindow = false;
|
||||
}
|
||||
if (cbdata.data != null) {
|
||||
|
||||
Reference in New Issue
Block a user