From 5ad9d90ea408846ef363cad93429f04096e2e0eb Mon Sep 17 00:00:00 2001 From: Alexandre <44178713+alexbelgium@users.noreply.github.com> Date: Mon, 14 Feb 2022 14:08:06 +0100 Subject: [PATCH] Show in logs --- fireflyiii/rootfs/templates/cronupdate | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fireflyiii/rootfs/templates/cronupdate b/fireflyiii/rootfs/templates/cronupdate index acc0fcc96..c12e5abd3 100644 --- a/fireflyiii/rootfs/templates/cronupdate +++ b/fireflyiii/rootfs/templates/cronupdate @@ -1,5 +1,6 @@ #!/usr/bin/env bashio +( bashio::log.info "Running update according to defined schedule" > /dev/stdout if bashio::config.true 'silent'; then bashio::log.warning "Silent mode activated. Only errors will be shown. Please disable in addon options if you need to debug" > /dev/stdout @@ -7,3 +8,4 @@ if bashio::config.true 'silent'; then else /usr/local/bin/php /var/www/html/artisan firefly:cron > /dev/stdout 2> /dev/stdout fi +) &>/proc/1/fd/1