Use varargs logging.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@5451 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Michael Bayne
2008-10-21 01:52:05 +00:00
parent 6fa89df998
commit 92f79dad34
@@ -7,8 +7,6 @@ import java.util.List;
import com.google.inject.Inject; import com.google.inject.Inject;
import com.samskivert.util.StringUtil;
import com.threerings.presents.client.TestService; import com.threerings.presents.client.TestService;
import com.threerings.presents.data.ClientObject; import com.threerings.presents.data.ClientObject;
import com.threerings.presents.server.ClientManager; import com.threerings.presents.server.ClientManager;
@@ -39,8 +37,7 @@ public class TestManager
TestService.TestFuncListener listener) TestService.TestFuncListener listener)
throws InvocationException throws InvocationException
{ {
log.info("Test request [one=" + one + ", two=" + two + log.info("Test request", "one", one, "two", two, "three", three);
", three=" + StringUtil.toString(three) + "].");
// and issue a response to this invocation request // and issue a response to this invocation request
listener.testSucceeded(one, two); listener.testSucceeded(one, two);