Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(361)

Unified Diff: testing/legion/task_registration_server.py

Issue 1108173002: Roll //build, //native_client, and a few more targets of opportunity. Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Test fix Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « testing/legion/task_controller.py ('k') | testing/scripts/gtest_perf_test.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: testing/legion/task_registration_server.py
diff --git a/testing/legion/task_registration_server.py b/testing/legion/task_registration_server.py
index 52ba727056d7f22511214571bbff7962e4db7a8a..fe92dcd5fc79314b42af3022c804fa46eaf772c0 100644
--- a/testing/legion/task_registration_server.py
+++ b/testing/legion/task_registration_server.py
@@ -39,7 +39,7 @@ class TaskRegistrationServer(object):
def Start(self):
"""Starts the registration server."""
- logging.debug('Starting task registration server')
+ logging.info('Starting task registration server')
self._rpc_server = SimpleXMLRPCServer.SimpleXMLRPCServer(
(common_lib.SERVER_ADDRESS, common_lib.SERVER_PORT),
allow_none=True, logRequests=False)
@@ -51,5 +51,5 @@ class TaskRegistrationServer(object):
def Shutdown(self):
"""Shuts the discovery server down."""
if self._thread and self._thread.is_alive():
- logging.debug('Shutting down task registration server')
+ logging.info('Shutting down task registration server')
self._rpc_server.shutdown()
« no previous file with comments | « testing/legion/task_controller.py ('k') | testing/scripts/gtest_perf_test.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698