mirror of
https://github.com/morgan9e/FreeRDP
synced 2026-04-14 00:14:11 +09:00
[logging] remove __FUNCTION__ from actual message
prefer the log formatter to provide that information.
This commit is contained in:
@@ -37,7 +37,7 @@ static void ios_OnChannelConnectedEventHandler(void *context, const ChannelConne
|
||||
|
||||
if (!context || !e)
|
||||
{
|
||||
WLog_FATAL(TAG, "%s(context=%p, EventArgs=%p", __FUNCTION__, context, (void *)e);
|
||||
WLog_FATAL(TAG, "(context=%p, EventArgs=%p", context, (void *)e);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -66,7 +66,7 @@ static void ios_OnChannelDisconnectedEventHandler(void *context,
|
||||
|
||||
if (!context || !e)
|
||||
{
|
||||
WLog_FATAL(TAG, "%s(context=%p, EventArgs=%p", __FUNCTION__, context, (void *)e);
|
||||
WLog_FATAL(TAG, "(context=%p, EventArgs=%p", context, (void *)e);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user