From 2986418cf48af446255ef555458b63fd71f15aec 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 (#3370) --- shell/common/diagnostic/diagnostic_server.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/common/diagnostic/diagnostic_server.dart b/shell/common/diagnostic/diagnostic_server.dart index 6779713f7..aea869239 100644 --- a/shell/common/diagnostic/diagnostic_server.dart +++ b/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/'); }); } -- GitLab