mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-15 00:44:19 +09:00
[logging] remove __FUNCTION__ from actual message
prefer the log formatter to provide that information.
This commit is contained in:
@@ -255,7 +255,7 @@ static DWORD WINAPI tf_client_thread_proc(LPVOID arg)
|
||||
|
||||
if (nCount == 0)
|
||||
{
|
||||
WLog_ERR(TAG, "%s: freerdp_get_event_handles failed", __FUNCTION__);
|
||||
WLog_ERR(TAG, "freerdp_get_event_handles failed");
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -263,8 +263,7 @@ static DWORD WINAPI tf_client_thread_proc(LPVOID arg)
|
||||
|
||||
if (status == WAIT_FAILED)
|
||||
{
|
||||
WLog_ERR(TAG, "%s: WaitForMultipleObjects failed with %" PRIu32 "", __FUNCTION__,
|
||||
status);
|
||||
WLog_ERR(TAG, "WaitForMultipleObjects failed with %" PRIu32 "", status);
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user