chore: adjust number of output lines on error logs

This commit is contained in:
Karol Sójko 2023-02-07 10:22:04 +01:00
parent b2c7b924ac
commit b216b17ef5
No known key found for this signature in database
GPG key ID: D966F68E8A92F649

View file

@ -22,9 +22,9 @@ done
echo "# Failed to wait for all services to be up!" echo "# Failed to wait for all services to be up!"
echo "# Errors:" echo "# Errors:"
tail $LOGS_PATH/*.err tail -n 50 $LOGS_PATH/*.err
echo "# Logs:" echo "# Logs:"
tail $LOGS_PATH/*.log tail -n 50 $LOGS_PATH/*.log
exit 1 exit 1