From 6f824841a34a6062a5320a587fef8ffdc750595d Mon Sep 17 00:00:00 2001 From: ForLoveOfCats Date: Mon, 8 Jun 2020 15:53:46 -0400 Subject: [PATCH] Turn two more Windows shell errors into info --- druid-shell/src/platform/windows/util.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/druid-shell/src/platform/windows/util.rs b/druid-shell/src/platform/windows/util.rs index 9b0cce924e..299b3eca0d 100644 --- a/druid-shell/src/platform/windows/util.rs +++ b/druid-shell/src/platform/windows/util.rs @@ -203,14 +203,14 @@ fn load_optional_functions() -> OptionalFunctions { let mut CreateDXGIFactory2 = None; if shcore.is_null() { - log::error!("No shcore.dll"); + log::info!("No shcore.dll"); } else { load_function!(shcore, SetProcessDpiAwareness, "8.1"); load_function!(shcore, GetDpiForMonitor, "8.1"); } if user32.is_null() { - log::error!("No user32.dll"); + log::info!("No user32.dll"); } else { load_function!(user32, GetDpiForSystem, "10"); }