Make the diagnostic "listening on" message consistent with observatory's (flutter/engine#3370)

This commit is contained in:
Ian Hickson 2017-01-26 15:51:34 -08:00 committed by GitHub
parent 29872224ed
commit ee825ea5d7

View File

@ -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/');
});
}