Adding ability to log output when starting xmlrpc server.
The ability to see the output when xmlrpc servers are started was
broken recently and if the command errors out, there is no debugging
information that we can see.
BUG=chromium:320184
TEST=Manually ran against DUT at desk
Change-Id: I20a98927b0866a7e2a724941ee7988d177007c39
Reviewed-on: https://chromium-review.googlesource.com/177281
Reviewed-by: Christopher Wiley <wiley@chromium.org>
Reviewed-by: Richard Barnette <jrbarnette@chromium.org>
Commit-Queue: Yusuf Mohsinally <mohsinally@chromium.org>
Tested-by: Yusuf Mohsinally <mohsinally@chromium.org>
diff --git a/server/cros/faft/rpc_proxy.py b/server/cros/faft/rpc_proxy.py
index f7d8353..d5c9925 100644
--- a/server/cros/faft/rpc_proxy.py
+++ b/server/cros/faft/rpc_proxy.py
@@ -84,7 +84,8 @@
self._client_config.rpc_port,
command_name=self._client_config.rpc_command_short,
ready_test_name=self._client_config.rpc_ready_call,
- timeout_seconds=self._client_config.rpc_timeout)
+ timeout_seconds=self._client_config.rpc_timeout,
+ logfile=self._client_config.rpc_logfile)
def disconnect(self):
"""Disconnect the RPC server."""