Reword file drag drop error to debug message (#7269)
* Reword error message * Fix indentation * Fix code style * Update ChangeLog
This commit is contained in:
@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user