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:
@@ -52,8 +52,7 @@ static const char* strsignal(int signum)
|
||||
static void cleanup_handler(int signum)
|
||||
{
|
||||
printf("\n");
|
||||
WLog_INFO(TAG, "[%s]: caught signal %s [%d], starting cleanup...", __FUNCTION__,
|
||||
strsignal(signum), signum);
|
||||
WLog_INFO(TAG, "caught signal %s [%d], starting cleanup...", strsignal(signum), signum);
|
||||
|
||||
WLog_INFO(TAG, "stopping all connections.");
|
||||
pf_server_stop(server);
|
||||
|
||||
Reference in New Issue
Block a user