Enable WP_DEBUG to file

In your wp-config.php replace:

define('WP_DEBUG', false);

with:

define('WP_DEBUG', true);
define('WP_DEBUG_LOG', true);
define('WP_DEBUG_DISPLAY', false);

That will output any errors to file called debug.log in your wp-content directory.
It is far better to save errors to a file, otherwise they will be shown in your site.