[wpiutil] SendableRegistry: Print exception stacktrace (#3620)

This commit is contained in:
Peter Johnson
2021-10-10 15:53:11 -07:00
committed by GitHub
parent d347928e4d
commit 7b3f62244f

View File

@@ -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) {