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:
@@ -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);
|
||||||
|
|||||||
Reference in New Issue
Block a user