Skip to content

Commit

Permalink
Logs the full stack trace of exception from the packet queue.
Browse files Browse the repository at this point in the history
  • Loading branch information
bgrozev authored and bbaldino committed Apr 11, 2019
1 parent c8eaf8b commit 95b5bec
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/org/jitsi/utils/AsyncQueueHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public void run()
}
catch (Throwable e)
{
logger.warn("Failed to handle item: " + e);
logger.warn("Failed to handle item: ", e);
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@
*/
package org.jitsi.utils.concurrent;

import org.jitsi.utils.concurrent.*;

/**
* Implements a {@link PeriodicRunnable} associated with an {@code Object}.
*
Expand Down

0 comments on commit 95b5bec

Please sign in to comment.