utils: remove unnecessary debug message.

Change the level from info to debug as it's nothing a regular users
would have interest in.
This commit is contained in:
Bernhard Miklautz 2017-01-11 15:24:49 +01:00
parent bbb6bf6b43
commit 3a4e1adee7

View File

@ -109,7 +109,7 @@ int freerdp_handle_signals(void)
sigset_t orig_set;
struct sigaction orig_sigaction;
struct sigaction fatal_sigaction;
WLog_INFO(TAG, "Registering signal hook...");
WLog_DBG(TAG, "Registering signal hook...");
sigfillset(&(fatal_sigaction.sa_mask));
sigdelset(&(fatal_sigaction.sa_mask), SIGCONT);
pthread_sigmask(SIG_BLOCK, &(fatal_sigaction.sa_mask), &orig_set);