Push in gitea from tortoise, does not print information about the status of push notifications as they are processed, prints after the end

push in gitea from tortoise, does not print information about the status of push notifications as they are processed, prints after the end
How do I receive messages as they are processed?
Configured post-update

branch=$(git rev-parse --symbolic --abbrev-ref $1)
echo Update pushed to branch $branch
echo Attempt to update the branch $branch
if [ $branch = "Testing" ]
then
 cd /work/Ansible
 git --git-dir=.git pull
 ansible-playbook -i production2 Test_AparuAdminNet.yml --vault-password-file /work/vault.txt
fi

Working out this playbook prints at the end, and it is not possible to track what happens during the playbook operation.