Skip to content

Commit

Permalink
chore: Log android emulator creation
Browse files Browse the repository at this point in the history
  • Loading branch information
jeromelaban committed Dec 9, 2024
1 parent ba4fed3 commit 5097980
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions UnoCheck/Checkups/AndroidEmulatorCheckup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,10 @@ public override Task<DiagnosticResult> Examine(SharedState history)
{
var devices = avdManager.ListDevices();

ReportStatus($"Listing devices:", null);
Util.Log($"Listing devices:");
foreach (var device in devices)
{
ReportStatus($"Device: {device.Name} ({device.Id})", null);
Util.Log($"Device: {device.Name} ({device.Id})");
}

preferredDevice = devices.FirstOrDefault(d => d.Name.Contains("pixel", StringComparison.OrdinalIgnoreCase));
Expand Down Expand Up @@ -156,7 +156,7 @@ public override Task<DiagnosticResult> Examine(SharedState history)

foreach (var msg in result.output)
{
ReportStatus(msg, null);
Util.Log(msg);
}

if (result.success)
Expand Down

0 comments on commit 5097980

Please sign in to comment.