Troubleshooting
Learn how to diagnose issues with your integration.
When something does not work as expected, the application logs are usually the first place to look for the cause.
If you have any questions, please contact us for assistance or join our community to get help from our team and other users.
Inspect the logs
The bundle reports internal failures through the application logger, which Symfony provides through Monolog. Failures during content fetching or query evaluation are recorded there.
In the development environment, you can watch them in real time:
php bin/console server:logYou can also read them directly from var/log/dev.log.
Enable debug mode
In the development environment, debug mode is on by default, so the browser SDK already logs detailed information to the console. To force it on in any environment, set it explicitly:
croct: debug: trueSee Debugging in the JavaScript SDK reference for the details.