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: LobbyService.java,v 1.2 2001/10/11 04:13:33 mdb Exp $
// $Id: LobbyService.java,v 1.3 2002/05/15 23:54:34 mdb Exp $
package com.threerings.micasa.lobby;
@@ -31,7 +31,7 @@ public class LobbyService
public static int getCategories (Client client, Object rsptarget)
{
InvocationDirector invdir = client.getInvocationDirector();
Log.info("Sending get categories.");
Log.debug("Sending get categories.");
return invdir.invoke(
MODULE_NAME, GET_CATEGORIES_REQUEST, null, rsptarget);
}
@@ -55,7 +55,7 @@ public class LobbyService
{
InvocationDirector invdir = client.getInvocationDirector();
Object[] args = new Object[] { category };
Log.info("Sending get lobbies [category=" + category + "].");
Log.debug("Sending get lobbies [category=" + category + "].");
return invdir.invoke(
MODULE_NAME, GET_LOBBIES_REQUEST, args, rsptarget);
}