forked from External/mage
connection: improved error processing and stability in connect dialog
This commit is contained in:
parent
adf57a0677
commit
0b0e947741
6 changed files with 55 additions and 24 deletions
|
|
@ -41,7 +41,7 @@ public class LinePool {
|
|||
@Override
|
||||
protected void afterExecute(Runnable r, Throwable t) {
|
||||
super.afterExecute(r, t);
|
||||
t = ThreadUtils.findRealException(r, t);
|
||||
t = ThreadUtils.findRunnableException(r, t);
|
||||
if (t != null && !(t instanceof CancellationException)) {
|
||||
// TODO: show sound errors in client logs?
|
||||
//logger.error("Catch unhandled error in SOUND thread: " + t.getMessage(), t);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue