File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/Uno.UI.RuntimeTests.Engine.Library/Engine/ExternalRunner/_Private Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments