diff --git a/lib/client/CClient.cpp b/lib/client/CClient.cpp index 932072e8..6f690ab1 100644 --- a/lib/client/CClient.cpp +++ b/lib/client/CClient.cpp @@ -546,7 +546,7 @@ CClient::runServer() break; } catch (XSocketConnect& e) { - LOG((CLOG_DEBUG1 "failed to connect to server: %s", e.what())); + LOG((CLOG_DEBUG "failed to connect to server: %s", e.what())); // failed to connect. if not camping then rethrow. if (!m_camp) { diff --git a/lib/platform/CXWindowsUtil.cpp b/lib/platform/CXWindowsUtil.cpp index 63cd1ca7..90d0b0aa 100644 --- a/lib/platform/CXWindowsUtil.cpp +++ b/lib/platform/CXWindowsUtil.cpp @@ -99,7 +99,7 @@ CXWindowsUtil::getWindowProperty(Display* display, Window window, } if (result == Success) { - LOG((CLOG_DEBUG1 "read property %d on window 0x%08x: bytes=%d", property, window, (data == NULL) ? 0 : data->size())); + LOG((CLOG_DEBUG2 "read property %d on window 0x%08x: bytes=%d", property, window, (data == NULL) ? 0 : data->size())); return true; } else {