| 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();
|
| }
|
|
|
|
|