diff --git a/data/helpers.d/system b/data/helpers.d/system index 5fe62dcef..25d135401 100644 --- a/data/helpers.d/system +++ b/data/helpers.d/system @@ -90,7 +90,7 @@ ynh_systemd_action() { # Following the starting of the app in its log if [ "$log_path" == "systemd" ] ; then # Read the systemd journal - journalctl -u $service_name -f --since=-45 > "$templog" & + journalctl --unit=$service_name --follow --since=-0 --quiet > "$templog" & else # Read the specified log file tail -F -n0 "$log_path" > "$templog" &