To turn on debugging add the following to wp-config.php
// Turn debugging on define('WP_DEBUG', true); // Tell WordPress to log everything to /wp-content/debug.log define('WP_DEBUG_LOG', true); // Display error messages define('WP_DEBUG_DISPLAY', true);
Write to /wp-content/debug.log
error_log('logging message here...');