Error logs in Magento 2
Set the developer mode
php bin/magento deploy:mode:set developer
//You can check the errors for var/log and var/reports folder
//You can enable display error reporting from index.php in magento from index.php. Add below code after the starting of <?php
ini_set(‘display_errors’, 1);
error_reporting(E_ALL);
magento.stackexchange.com/questions/282350/where-i-can-find-exception-or-error-logs-in-magento-2
1 thought on “Find exception or error logs in Magento 2 ?”
Comments are closed.