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

Unified Diff: lib/devc.dart

Issue 1088603002: Show message that server is running when it really is (fixes #133) (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/devc.dart
diff --git a/lib/devc.dart b/lib/devc.dart
index 27f07028323570550324767ce0cc491877716923..60e9ac9dbf39cc88187645001f77a1a556805392 100644
--- a/lib/devc.dart
+++ b/lib/devc.dart
@@ -261,7 +261,6 @@ class CompilerServer {
}
var port = options.port;
var host = options.host;
- _log.fine('Serving $entryPath at http://$host:$port/');
var compiler = new Compiler(options);
return new CompilerServer._(compiler, outDir, host, port, entryPath);
}
@@ -279,6 +278,7 @@ class CompilerServer {
.addHandler(shelf_static.createStaticHandler(outDir,
defaultDocument: _entryPath));
await shelf.serve(handler, host, port);
+ _log.fine('Serving $_entryPath at http://$host:$port/');
compiler.run();
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698