utils: remove unnecessary debug message.
authorBernhard Miklautz <bernhard.miklautz@thincast.com>
Wed, 11 Jan 2017 14:24:49 +0000 (15:24 +0100)
committerBernhard Miklautz <bernhard.miklautz@thincast.com>
Mon, 16 Jan 2017 10:11:58 +0000 (11:11 +0100)
Change the level from info to debug as it's nothing a regular users
would have interest in.

libfreerdp/utils/signal.c

index 66f5d0f..d8714a2 100644 (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);