// Enable Debug logging and specifying the location for the log file define( 'WP_DEBUG_LOG', '/tmp/wp-errors.log' ); WP_DEBUG_DISPLAY WP_DEBUG_DISPLAY is used to control whether debug messages are shown on site’s front-end or not. The default value is true which shows errors and ...
At least if you’ve added the constants above to yourwp-config.phpfile, all the errors from the third party plugins and your own code will be logged todebug.log, which is much more manageable than if they were displayed on the site. But how do you monitor thedebug.logfor errors, and...