diff --git a/Wox.Core/Resource/Internationalization.cs b/Wox.Core/Resource/Internationalization.cs index 6b758a7df3..9f865cb539 100644 --- a/Wox.Core/Resource/Internationalization.cs +++ b/Wox.Core/Resource/Internationalization.cs @@ -95,7 +95,6 @@ namespace Wox.Core.Resource { LoadLanguage(language); } - Log.Debug($"|TEST|{Application.Current.Resources.MergedDictionaries.Select(d => d.Source.AbsolutePath).Formatted()}"); UpdatePluginMetadataTranslations(); } diff --git a/Wox.Core/Resource/Theme.cs b/Wox.Core/Resource/Theme.cs index c78ff91d2b..99e5d89e2c 100644 --- a/Wox.Core/Resource/Theme.cs +++ b/Wox.Core/Resource/Theme.cs @@ -91,7 +91,6 @@ namespace Wox.Core.Resource Settings.Theme = theme; var dicts = Application.Current.Resources.MergedDictionaries; - Log.Debug($"|TEST1|{dicts.Select(d => d.Source.AbsolutePath).Formatted()}"); if (_oldTheme != theme) { dicts.Remove(_oldResource); @@ -100,7 +99,6 @@ namespace Wox.Core.Resource _oldResource = newResource; _oldTheme = Path.GetFileNameWithoutExtension(_oldResource.Source.AbsolutePath); } - Log.Debug($"|TEST2|{dicts.Select(d => d.Source.AbsolutePath).Formatted()}"); } }