Unverified Commit 11d02351 authored by Christopher Fujino's avatar Christopher Fujino Committed by GitHub

change printStatus calls to printTrace inside MDnsObservatoryDiscovery (#41621)

parent 0e9ce63c
......@@ -51,7 +51,7 @@ class MDnsObservatoryDiscovery {
/// it will return that instance's information regardless of what application
/// the Observatory instance is for.
Future<MDnsObservatoryDiscoveryResult> query({String applicationId}) async {
printStatus('Checking for advertised Dart observatories...');
printTrace('Checking for advertised Dart observatories...');
try {
await client.start();
final List<PtrResourceRecord> pointerRecords = await client
......@@ -92,7 +92,7 @@ class MDnsObservatoryDiscovery {
} else {
domainName = pointerRecords[0].domainName;
}
printStatus('Checking for available port on $domainName');
printTrace('Checking for available port on $domainName');
// Here, if we get more than one, it should just be a duplicate.
final List<SrvResourceRecord> srv = await client
.lookup<SrvResourceRecord>(
......@@ -106,7 +106,7 @@ class MDnsObservatoryDiscovery {
printError('Unexpectedly found more than one observatory report for $domainName '
'- using first one (${srv.first.port}).');
}
printStatus('Checking for authentication code for $domainName');
printTrace('Checking for authentication code for $domainName');
final List<TxtResourceRecord> txt = await client
.lookup<TxtResourceRecord>(
ResourceRecordQuery.text(domainName),
......
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