1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-04 17:47:03 +03:00

main: always log when we reexecute or reload

This commit is contained in:
Lennart Poettering 2010-07-07 17:44:11 +02:00
parent af2ab1f9a3
commit e015090f32

View File

@ -1007,6 +1007,7 @@ int main(int argc, char *argv[]) {
goto finish;
case MANAGER_RELOAD:
log_info("Reloading.");
if ((r = manager_reload(m)) < 0)
log_error("Failed to reload: %s", strerror(-r));
break;
@ -1016,7 +1017,7 @@ int main(int argc, char *argv[]) {
goto finish;
reexecute = true;
log_debug("Reexecuting.");
log_notice("Reexecuting.");
goto finish;
default: