Minor changes to previous fix. Log runnable, event or message that is being posted to the inactive queue. Remove instanceof check since the invoker will always be of the expected type
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5495 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -866,7 +866,8 @@ public class ConnectionManager extends LoopingThread
|
||||
void postMessage (Connection conn, DownstreamMessage msg)
|
||||
{
|
||||
if (!isRunning()) {
|
||||
log.warning("Posting message to inactive connection manager", new Exception());
|
||||
log.warning(
|
||||
"Posting message to inactive connection manager", "msg", msg, new Exception());
|
||||
}
|
||||
|
||||
// sanity check
|
||||
|
||||
Reference in New Issue
Block a user