diff --git a/Uno.Gallery/Uno.Gallery.Shared/App.xaml.cs b/Uno.Gallery/Uno.Gallery.Shared/App.xaml.cs index 76c368657..2b609d10d 100644 --- a/Uno.Gallery/Uno.Gallery.Shared/App.xaml.cs +++ b/Uno.Gallery/Uno.Gallery.Shared/App.xaml.cs @@ -44,12 +44,9 @@ public partial class App : Application public App() { Instance = this; -#if !WINDOWS - Uno.UI.FeatureConfiguration.ApiInformation.NotImplementedLogLevel = Foundation.Logging.LogLevel.Debug; // Raise not implemented usages as Debug messages -#endif - InitializeLogging(); ConfigureFeatureFlags(); + InitializeLogging(); ConfigureXamlDisplay(); this.InitializeComponent(); @@ -419,7 +416,10 @@ private void ConfigureXamlDisplay() private void ConfigureFeatureFlags() { +#if !WINDOWS + FeatureConfiguration.ApiInformation.NotImplementedLogLevel = Foundation.Logging.LogLevel.Debug; // Raise not implemented usages as Debug messages FeatureConfiguration.ToolTip.UseToolTips = true; +#endif } } }