r/m unwanted logger.debug, pointed out by Michael Greene. patch by jbellis

git-svn-id: https://svn.apache.org/repos/asf/incubator/cassandra/trunk@796559 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Jonathan Ellis 2009-07-21 22:08:34 +00:00
parent efc9b60686
commit 878991bb32
1 changed files with 0 additions and 1 deletions

View File

@ -383,7 +383,6 @@ public class FBUtilities
public static byte[] readByteArray(DataInput in) throws IOException
{
int length = in.readInt();
logger_.debug(length);
byte[] bytes = new byte[length];
in.readFully(bytes);
return bytes;