Let's find out what that invalid argument exception is, should it recur.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@3665 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2005-08-01 18:11:33 +00:00
parent d87ca1d8e1
commit dc202b3e8a
@@ -436,6 +436,10 @@ public class ConnectionManager extends LoopingThread
} catch (IOException ioe) { } catch (IOException ioe) {
Log.warning("Failure select()ing [ioe=" + ioe + "]."); Log.warning("Failure select()ing [ioe=" + ioe + "].");
if ("Invalid argument".equals(ioe.getMessage())) {
// what is this, anyway?
Log.logStackTrace(ioe);
}
return; return;
} catch (RuntimeException re) { } catch (RuntimeException re) {