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

Unified Diff: testing/legion/task_registration_server.py

Issue 1124763003: Update from https://crrev.com/327068 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: update nacl, buildtools, fix display_change_notifier_unittest Created 5 years, 7 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
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()

Powered by Google App Engine
This is Rietveld 408576698