diff options
| -rw-r--r-- | shaping/src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shaping/src/main.cpp b/shaping/src/main.cpp index 54e2f60..63b7a49 100644 --- a/shaping/src/main.cpp +++ b/shaping/src/main.cpp @@ -84,7 +84,7 @@ int main(int argc, char **argv) if (signal(SIGQUIT, sig_handler) == SIG_ERR || signal(SIGTERM, sig_handler) == SIG_ERR) { - LOG_ERROR("%s: unable to register SIGQUIT signal handler, error %d: %s", LOG_TAG_SHAPING, errno, strerror(errno)); + LOG_ERROR("%s: unable to register SIGQUIT or SIGTERM signal handler, error %d: %s", LOG_TAG_SHAPING, errno, strerror(errno)); LOG_CLOSE(); return -1; } |
