Change SIGWINCH log-level from ERROR to INFO

This commit is contained in:
Sukchan Lee 2021-07-12 19:52:28 +09:00
parent 005cd30e02
commit 7cfeb2e9f9
1 changed files with 4 additions and 0 deletions

View File

@ -59,6 +59,10 @@ static int check_signal(int signum)
ogs_log_cycle();
break;
case SIGWINCH:
ogs_info("Signal-NUM[%d] received (%s)",
signum, ogs_signal_description_get(signum));
break;
default:
ogs_error("Signal-NUM[%d] received (%s)",
signum, ogs_signal_description_get(signum));