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

Unified Diff: mojo/devtools/common/devtoolslib/http_server.py

Issue 1259793008: Support dev servers defined in a mojoconfig file. (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Address Ben's comments. Created 5 years, 4 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: mojo/devtools/common/devtoolslib/http_server.py
diff --git a/mojo/devtools/common/devtoolslib/http_server.py b/mojo/devtools/common/devtoolslib/http_server.py
index 6afd6a01ca4375a485bc2ad301ad2b80066af331..a74be0de59309829195b894e55dbfeb528ae9011 100644
--- a/mojo/devtools/common/devtoolslib/http_server.py
+++ b/mojo/devtools/common/devtoolslib/http_server.py
@@ -203,9 +203,6 @@ def start_http_server(mappings, host_port=0):
http_thread = threading.Thread(target=httpd.serve_forever)
http_thread.daemon = True
http_thread.start()
- print 'Started http://%s:%d to host %s.' % (httpd.server_address[0],
- httpd.server_address[1],
- str(mappings))
return httpd.server_address
except socket.error as v:
error_code = v[0]

Powered by Google App Engine
This is Rietveld 408576698