From 719537df815f3755977599d5c425b76739fea910 Mon Sep 17 00:00:00 2001 From: David Oliver Date: Thu, 6 May 2021 05:29:19 -0400 Subject: [PATCH] chore: [Gtk] Lower log level for icon file success --- src/Uno.UI.Runtime.Skia.Gtk/GtkHost.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Uno.UI.Runtime.Skia.Gtk/GtkHost.cs b/src/Uno.UI.Runtime.Skia.Gtk/GtkHost.cs index 6dea88dce5ab..e2ac424c4728 100644 --- a/src/Uno.UI.Runtime.Skia.Gtk/GtkHost.cs +++ b/src/Uno.UI.Runtime.Skia.Gtk/GtkHost.cs @@ -147,9 +147,9 @@ private void UpdateWindowPropertiesFromPackage() if (File.Exists(iconPath)) { - if (this.Log().IsEnabled(Microsoft.Extensions.Logging.LogLevel.Warning)) + if (this.Log().IsEnabled(Microsoft.Extensions.Logging.LogLevel.Information)) { - this.Log().Warn($"Loading icon file [{iconPath}] from Package.appxmanifest file"); + this.Log().Info($"Loading icon file [{iconPath}] from Package.appxmanifest file"); } GtkHost.Window.SetIconFromFile(iconPath);