Unverified Commit 1cd09e54 authored by Andrew Davies's avatar Andrew Davies Committed by GitHub

[frdb] Change to warning log on timeout. (#19006)

Before a severe log would be raised when timeout happens. Now that
testing connections requires potentially running into a timeout, this
will cause failures when there shouldn't be any.
parent 34da4a5f
......@@ -58,7 +58,7 @@ Future<json_rpc.Peer> _waitAndConnect(Uri uri) async {
await new Future<Null>.delayed(_kReconnectAttemptInterval);
return attemptConnection(uri);
} else {
_log.severe('Connection to Fuchsia\'s Dart VM timed out at '
_log.warning('Connection to Fuchsia\'s Dart VM timed out at '
'${uri.toString()}');
rethrow;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment