Skip to content

Commit

Permalink
chore: [Gtk] Lower log level for icon file success
Browse files Browse the repository at this point in the history
  • Loading branch information
davidjohnoliver committed May 6, 2021
1 parent 3767acc commit afbfd2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Uno.UI.Runtime.Skia.Gtk/GtkHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit afbfd2e

Please sign in to comment.