diff options
author | Dave Blake <oak99sky@yahoo.co.uk> | 2019-04-10 09:23:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-10 09:23:26 +0100 |
commit | ee0d12832db86f8b767bb88a942d06905f572340 (patch) | |
tree | 23f106dc29479d5cdab2a7e12a87b59973a102a5 | |
parent | b91695e796cc3e33ef7750719fa2cc9bced3bc6f (diff) | |
parent | 83dd26698077bbdc166134df3c437a27aed2f602 (diff) |
Merge pull request #15892 from DaveTBlake/Logfixbrackets
Fix debug log statement in Windows NotificationClient
-rw-r--r-- | xbmc/platform/win32/IMMNotificationClient.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/platform/win32/IMMNotificationClient.h b/xbmc/platform/win32/IMMNotificationClient.h index 9a6212bc11..39ed24c64c 100644 --- a/xbmc/platform/win32/IMMNotificationClient.h +++ b/xbmc/platform/win32/IMMNotificationClient.h @@ -146,7 +146,7 @@ public: HRESULT STDMETHODCALLTYPE OnPropertyValueChanged(LPCWSTR pwstrDeviceId, const PROPERTYKEY key) { - CLog::Log(LOGDEBUG, "%s: Changed device property of %s is {{%8.8x-%4.4x-%4.4x-%2.2x%2.2x-%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x}}#%d", + CLog::Log(LOGDEBUG, "%s: Changed device property of %s is (%8.8x-%4.4x-%4.4x-%2.2x%2.2x-%2.2x%2.2x%2.2x%2.2x%2.2x%2.2x)#%d", __FUNCTION__, FromW(pwstrDeviceId), key.fmtid.Data1, key.fmtid.Data2, key.fmtid.Data3, key.fmtid.Data4[0], key.fmtid.Data4[1], key.fmtid.Data4[2], key.fmtid.Data4[3], |