Don't log the whole message, just the class.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@2484 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2003-04-27 07:53:31 +00:00
parent 5c03adbb72
commit 201ee0acf3
@@ -1,5 +1,5 @@
//
// $Id: ConnectionManager.java,v 1.29 2003/04/27 01:32:08 mdb Exp $
// $Id: ConnectionManager.java,v 1.30 2003/04/27 07:53:31 mdb Exp $
package com.threerings.presents.server.net;
@@ -410,7 +410,8 @@ public class ConnectionManager extends LoopingThread
if (buffer.remaining() > 0) {
fully = false;
Log.info("Partial write [conn=" + conn +
", msg=" + outmsg + ", wrote=" + wrote +
", msg=" + StringUtil.shortClassName(outmsg) +
", wrote=" + wrote +
", size=" + buffer.limit() + "].");
pwh.handlePartialWrite(conn, buffer);