Browse Source

fix: fix tailing log files

The commit fixes an issue where the log files were not being properly tailed. The change modifies the code to correctly tail the log files by using the correct directory path.
pull/23/head
Daniel Gibbs 2 years ago
parent
commit
e277f17c6d
  1. 2
      entrypoint-user.sh

2
entrypoint-user.sh

@ -64,5 +64,5 @@ sleep 5
sleep 2
echo -e "Tail log files"
echo -e "================================="
tail -F log/*/*.log &
tail -F "${logdir}/*/*.log" &
wait

Loading…
Cancel
Save