summaryrefslogtreecommitdiff
path: root/sysdep/unix/main.c
diff options
context:
space:
mode:
authorMikael Magnusson <mikma@users.sourceforge.net>2021-08-31 21:38:23 +0200
committerMikael Magnusson <mikma@users.sourceforge.net>2023-08-24 02:25:38 +0200
commit1cf94df8ff54191ff41dd5de08b604d857055453 (patch)
treec3dad3dba4d97c926d92b1dd2fe811a8ecb8c19b /sysdep/unix/main.c
parentae307d4acb9c83993d952ad7cc017d7a95791e6c (diff)
Unix: debug
Diffstat (limited to 'sysdep/unix/main.c')
-rw-r--r--sysdep/unix/main.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdep/unix/main.c b/sysdep/unix/main.c
index 139aef35..208d3173 100644
--- a/sysdep/unix/main.c
+++ b/sysdep/unix/main.c
@@ -605,6 +605,7 @@ unlink_pid_file(void)
void
cmd_shutdown(void)
{
+ log_msg(L_INFO "cmd_shutdown");
if (cli_access_restricted())
return;
@@ -615,6 +616,7 @@ cmd_shutdown(void)
void
async_shutdown(void)
{
+ log_msg(L_INFO "async_shutdown");
DBG("Shutting down...\n");
order_shutdown(0);
}
@@ -622,6 +624,7 @@ async_shutdown(void)
void
sysdep_shutdown_done(void)
{
+ log_msg(L_INFO "sysdep_shutdown_done");
unlink_pid_file();
unlink(path_control_socket);
log_msg(L_FATAL "Shutdown completed");