remove a period from the service protocol printout (#39545)

This commit is contained in:
Devon Carew 2019-08-31 11:39:00 -07:00 committed by GitHub
parent 84e5f231f3
commit e468296af3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -208,7 +208,7 @@ class ResidentWebRunner extends ResidentRunner {
websocketUri = Uri.parse(_debugConnection.uri);
}
if (websocketUri != null) {
printStatus('Debug service listening on $websocketUri.');
printStatus('Debug service listening on $websocketUri');
}
connectionInfoCompleter?.complete(
DebugConnectionInfo(wsUri: websocketUri)