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

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: 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 386b3569ac20c37e036719e23fdfa5fdc7d17359..6a796d005361791a3b3ecec1109acac730822a84 100644
--- a/mojo/devtools/common/devtoolslib/http_server.py
+++ b/mojo/devtools/common/devtoolslib/http_server.py
@@ -197,9 +197,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]
« no previous file with comments | « no previous file | mojo/devtools/common/devtoolslib/shell_arguments.py » ('j') | mojo/devtools/common/devtoolslib/shell_config.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698