Logging Issues
Issue: No logs in Docker container
Solutions:
- Check if logger is working:
1
docker logs tvx | tail -20
- Verify server.js logging endpoint:
1 2 3
curl -X POST http://localhost:8777/log \ -H "Content-Type: application/json" \ -d '{"level":"info","message":"test"}'
- Check browser console:
- Logs should appear in both browser and Docker
- If only in browser, server.js may have issues