Don't log when we're woken up to read data but there's none available.

We'll debug that probable Linux JVM bug later.


git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@536 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-10-24 00:35:37 +00:00
parent 15ff048a27
commit 660fccceb4
@@ -1,5 +1,5 @@
//
// $Id: FramedInputStream.java,v 1.8 2001/10/18 01:42:42 mdb Exp $
// $Id: FramedInputStream.java,v 1.9 2001/10/24 00:35:37 mdb Exp $
package com.threerings.presents.io;
@@ -72,7 +72,8 @@ public class FramedInputStream extends InputStream
throw new EOFException();
} else if (got == 0) {
Log.info("Woke up to read data, but there ain't none. Sigh.");
// TBD: don't log this for now, but look into it later
// Log.info("Woke up to read data, but there ain't none. Sigh.");
return false;
} else if (got < HEADER_SIZE) {