Relegated a shitload of logging to DEBUG status.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1361 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2002-05-15 23:54:35 +00:00
parent a52d62d532
commit b15d38b54d
8 changed files with 36 additions and 36 deletions
@@ -1,5 +1,5 @@
//
// $Id: ChatService.java,v 1.6 2001/10/11 04:07:51 mdb Exp $
// $Id: ChatService.java,v 1.7 2002/05/15 23:54:34 mdb Exp $
package com.threerings.crowd.chat;
@@ -35,8 +35,8 @@ public class ChatService implements ChatCodes
{
InvocationDirector invdir = client.getInvocationDirector();
Object[] args = new Object[] { target, message };
Log.info("Sending tell request [tgt=" + target +
", msg=" + message + "].");
Log.debug("Sending tell request [tgt=" + target +
", msg=" + message + "].");
return invdir.invoke(MODULE_NAME, TELL_REQUEST, args, rsptarget);
}
}
@@ -1,5 +1,5 @@
//
// $Id: LocationService.java,v 1.5 2002/04/15 16:28:01 shaper Exp $
// $Id: LocationService.java,v 1.6 2002/05/15 23:54:34 mdb Exp $
package com.threerings.crowd.client;
@@ -28,6 +28,6 @@ public class LocationService implements LocationCodes
InvocationDirector invdir = client.getInvocationDirector();
Object[] args = new Object[] { new Integer(placeId) };
invdir.invoke(MODULE_NAME, MOVE_TO_REQUEST, args, rsptarget);
Log.info("Sent moveTo request [place=" + placeId + "].");
Log.debug("Sent moveTo request [place=" + placeId + "].");
}
}