From 73c6ce84172602100c45e1854861c2ec0890589b Mon Sep 17 00:00:00 2001 From: David Date: Wed, 14 Feb 2024 03:36:49 -0500 Subject: [PATCH] chore: Fix ambiguous log extension point of windows for uno --- .../Library/Helpers/HotReloadHelper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Uno.UI.RuntimeTests.Engine.Library/Library/Helpers/HotReloadHelper.cs b/src/Uno.UI.RuntimeTests.Engine.Library/Library/Helpers/HotReloadHelper.cs index 89535e3..249d00c 100644 --- a/src/Uno.UI.RuntimeTests.Engine.Library/Library/Helpers/HotReloadHelper.cs +++ b/src/Uno.UI.RuntimeTests.Engine.Library/Library/Helpers/HotReloadHelper.cs @@ -58,7 +58,7 @@ public interface IFileUpdater global::System.Threading.Tasks.ValueTask Apply(FileEdit edition, global::System.Threading.CancellationToken ct); } - private static readonly global::Microsoft.Extensions.Logging.ILogger _log = typeof(HotReloadHelper).Log(); + private static readonly global::Microsoft.Extensions.Logging.ILogger _log = global::Uno.Extensions.LogExtensionPoint.Log(typeof(HotReloadHelper)); private static IFileUpdater _impl = new NotSupported(); ///