diff --git a/src/core/service.c b/src/core/service.c index 4b17889eb4..49ad166c26 100644 --- a/src/core/service.c +++ b/src/core/service.c @@ -3758,12 +3758,12 @@ static int service_dispatch_timer(sd_event_source *source, usec_t usec, void *us case SERVICE_AUTO_RESTART: if (s->restart_usec > 0) { char buf_restart[FORMAT_TIMESPAN_MAX]; - log_unit_info(UNIT(s), - "Service RestartSec=%s expired, scheduling restart.", - format_timespan(buf_restart, sizeof buf_restart, s->restart_usec, USEC_PER_SEC)); + log_unit_debug(UNIT(s), + "Service RestartSec=%s expired, scheduling restart.", + format_timespan(buf_restart, sizeof buf_restart, s->restart_usec, USEC_PER_SEC)); } else - log_unit_info(UNIT(s), - "Service has no hold-off time (RestartSec=0), scheduling restart."); + log_unit_debug(UNIT(s), + "Service has no hold-off time (RestartSec=0), scheduling restart."); service_enter_restart(s); break;