From 2fce545c174bb46a046d93348bf83c161bd3dc65 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Thu, 27 Jul 2023 02:36:44 -0700 Subject: [PATCH] Reword file drag drop error to debug message (#7269) * Reword error message * Fix indentation * Fix code style * Update ChangeLog --- ChangeLog | 1 + src/lib/platform/MSWindowsScreen.cpp | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4f91427da..d04a5ce4c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,7 @@ Enhancements: - #7262 Backward compatibility for M1 and M2 builds - #7254 Ability to bind client to a network interface - #7263 Change name of Flatpak uploaded to snapshots +- #7269 Reword file drag drop error to debug message 1.14.6 ====== diff --git a/src/lib/platform/MSWindowsScreen.cpp b/src/lib/platform/MSWindowsScreen.cpp index 8f8034acb..b91e9964f 100644 --- a/src/lib/platform/MSWindowsScreen.cpp +++ b/src/lib/platform/MSWindowsScreen.cpp @@ -161,10 +161,10 @@ MSWindowsScreen::MSWindowsScreen( char desktopPath[MAX_PATH]; if (SUCCEEDED(SHGetFolderPath(NULL, CSIDL_DESKTOP, NULL, 0, desktopPath))) { m_desktopPath = String(desktopPath); - LOG((CLOG_DEBUG "using desktop for drop target: %s", m_desktopPath.c_str())); + LOG((CLOG_DEBUG "using desktop for file drag-drop target: %s", m_desktopPath.c_str())); } else { - LOG((CLOG_ERR "failed to get desktop path, no drop target available, error=%d", GetLastError())); + LOG((CLOG_DEBUG "unable to use desktop as file drag-drop target, code=%d", GetLastError())); } if (App::instance().argsBase().m_preventSleep) {