Spaces:
Running
on
Zero
Running
on
Zero
File size: 403 Bytes
888f9e4 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#!/bin/bash
echo "=== Gradio App Log File ==="
if [ -f /home/user/app/gradio_app.log ]; then
tail -f /home/user/app/gradio_app.log
else
echo "Log file not found. Waiting for app to create it..."
sleep 2
if [ -f /home/user/app/gradio_app.log ]; then
tail -f /home/user/app/gradio_app.log
else
echo "Log file still not found. App may not have restarted yet."
fi
fi
|