Skip to content

Commit df36043

Browse files
committed
chore: Fix build
1 parent e58a465 commit df36043

File tree

1 file changed

+2
-2
lines changed
  • src/Uno.UI.RuntimeTests.Engine.Library/Engine/ExternalRunner/_Private

1 file changed

+2
-2
lines changed

src/Uno.UI.RuntimeTests.Engine.Library/Engine/ExternalRunner/_Private/DevServer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ private static void WaitForPortReady(int port, int timeoutMs = 30_000)
204204
{
205205
using var tcp = new global::System.Net.Sockets.TcpClient();
206206
tcp.Connect(global::System.Net.IPAddress.Loopback, port);
207-
_log.LogDebug($"Dev-server is listening on port {port} after {sw.ElapsedMilliseconds}ms");
207+
global::Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(_log, $"Dev-server is listening on port {port} after {sw.ElapsedMilliseconds}ms");
208208
return;
209209
}
210210
catch (global::System.Net.Sockets.SocketException)
@@ -213,7 +213,7 @@ private static void WaitForPortReady(int port, int timeoutMs = 30_000)
213213
}
214214
}
215215

216-
_log.LogWarning($"Dev-server port {port} not ready after {timeoutMs}ms, proceeding anyway");
216+
global::Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(_log, $"Dev-server port {port} not ready after {timeoutMs}ms, proceeding anyway");
217217
}
218218

219219
#region Misc helpers

0 commit comments

Comments
 (0)