From ee825ea5d79022eff58c3822e302eb7588fe996b Mon Sep 17 00:00:00 2001 From: Ian Hickson Date: Thu, 26 Jan 2017 15:51:34 -0800 Subject: [PATCH] Make the diagnostic "listening on" message consistent with observatory's (flutter/engine#3370) --- .../src/flutter/shell/common/diagnostic/diagnostic_server.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/flutter/shell/common/diagnostic/diagnostic_server.dart b/engine/src/flutter/shell/common/diagnostic/diagnostic_server.dart index 6779713f7ff..aea869239fd 100644 --- a/engine/src/flutter/shell/common/diagnostic/diagnostic_server.dart +++ b/engine/src/flutter/shell/common/diagnostic/diagnostic_server.dart @@ -17,7 +17,7 @@ void diagnosticServerStart(int port) { String ip = server.address.address.toString(); String port = server.port.toString(); - print('Diagnostic server listening on http://$ip:$port'); + print('Diagnostic server listening on http://$ip:$port/'); }); }