[logging] remove __FUNCTION__ from actual message

prefer the log formatter to provide that information.
This commit is contained in:
Armin Novak
2023-01-23 12:03:18 +01:00
committed by akallabeth
parent f4ee5226b0
commit 641022b795
107 changed files with 736 additions and 820 deletions

View File

@@ -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;
}