summaryrefslogtreecommitdiffhomepage
path: root/src/main.c
diff options
context:
space:
mode:
authorrofl0r <rofl0r@users.noreply.github.com>2020-09-07 16:59:37 +0100
committerrofl0r <rofl0r@users.noreply.github.com>2020-09-07 16:59:37 +0100
commit487a062fccbd1632b183debc146d61b4bdbce048 (patch)
treedf21c6a51c9c7b1c10e31ba9597bbb47a97c54a6 /src/main.c
parent23b0c8465306a0e069a639085bb08266b803a2de (diff)
change loglevel of start/stop/reload messages to NOTICE
this allows to see them when the verbose INFO loglevel is not desired. closes #78
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index da3feb3..7b702ab 100644
--- a/src/main.c
+++ b/src/main.c
@@ -293,7 +293,7 @@ main (int argc, char **argv)
*/
umask (0177);
- log_message (LOG_INFO, "Initializing " PACKAGE " ...");
+ log_message (LOG_NOTICE, "Initializing " PACKAGE " ...");
if (config_compile_regex()) {
exit (EX_SOFTWARE);
@@ -396,7 +396,7 @@ main (int argc, char **argv)
child_main_loop ();
- log_message (LOG_INFO, "Shutting down.");
+ log_message (LOG_NOTICE, "Shutting down.");
child_kill_children (SIGTERM);
child_close_sock ();