Commented out debug logging.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@158 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2001-08-03 02:12:27 +00:00
parent 44f19a5d68
commit ae73c73ac4
4 changed files with 11 additions and 10 deletions
@@ -1,5 +1,5 @@
// //
// $Id: Communicator.java,v 1.11 2001/07/25 00:26:44 mdb Exp $ // $Id: Communicator.java,v 1.12 2001/08/03 02:11:20 mdb Exp $
package com.threerings.cocktail.cher.client; package com.threerings.cocktail.cher.client;
@@ -267,7 +267,7 @@ public class Communicator
*/ */
protected void processMessage (DownstreamMessage msg) protected void processMessage (DownstreamMessage msg)
{ {
Log.info("Process msg: " + msg); // Log.info("Process msg: " + msg);
// post this message to the dobjmgr queue // post this message to the dobjmgr queue
_omgr.processMessage(msg); _omgr.processMessage(msg);
} }
@@ -1,5 +1,5 @@
// //
// $Id: DObject.java,v 1.17 2001/08/02 06:01:12 mdb Exp $ // $Id: DObject.java,v 1.18 2001/08/03 02:11:40 mdb Exp $
package com.threerings.cocktail.cher.dobj; package com.threerings.cocktail.cher.dobj;
@@ -171,8 +171,8 @@ public class DObject
*/ */
public void notifySubscribers (DEvent event) public void notifySubscribers (DEvent event)
{ {
Log.info("Dispatching event to " + _subscribers.size() + // Log.info("Dispatching event to " + _subscribers.size() +
" subscribers: " + event); // " subscribers: " + event);
for (int i = 0; i < _subscribers.size(); i++) { for (int i = 0; i < _subscribers.size(); i++) {
Subscriber sub = (Subscriber)_subscribers.get(i); Subscriber sub = (Subscriber)_subscribers.get(i);
@@ -1,5 +1,5 @@
// //
// $Id: DObjectFactory.java,v 1.5 2001/06/11 17:42:20 mdb Exp $ // $Id: DObjectFactory.java,v 1.6 2001/08/03 02:11:40 mdb Exp $
package com.threerings.cocktail.cher.dobj.io; package com.threerings.cocktail.cher.dobj.io;
@@ -26,7 +26,7 @@ public class DObjectFactory
public static void writeTo (DataOutputStream out, DObject dobj) public static void writeTo (DataOutputStream out, DObject dobj)
throws IOException throws IOException
{ {
Log.info("Marshalling object: " + dobj); // Log.info("Marshalling object: " + dobj);
// look up the marshaller for this object // look up the marshaller for this object
Class clazz = dobj.getClass(); Class clazz = dobj.getClass();
Marshaller marsh = getMarshaller(clazz); Marshaller marsh = getMarshaller(clazz);
@@ -1,5 +1,5 @@
// //
// $Id: PresentsClient.java,v 1.10 2001/07/23 21:13:56 mdb Exp $ // $Id: PresentsClient.java,v 1.11 2001/08/03 02:12:27 mdb Exp $
package com.threerings.cocktail.cher.server; package com.threerings.cocktail.cher.server;
@@ -309,9 +309,10 @@ public class Client implements Subscriber, MessageHandler
// fill in the proper source oid // fill in the proper source oid
fevt.setSourceOid(client.getClientObject().getOid()); fevt.setSourceOid(client.getClientObject().getOid());
// Log.info("Forwarding event [client=" + client +
// ", event=" + fevt + "].");
// forward the event to the omgr for processing // forward the event to the omgr for processing
Log.info("Forwarding event [client=" + client +
", event=" + fevt + "].");
CherServer.omgr.postEvent(fevt); CherServer.omgr.postEvent(fevt);
} }
} }