You appear to be a bot. Output may be restricted
Description
Turn on debugging for oik-batchWe're running in batch mode so we want to see and log all errors.
Usage
oik_batch_debug();
Parameters
Returns
voidSource
File name: oik-batch/libs/oik-cli.phpLines:
1 to 8 of 8
function oik_batch_debug() { if ( !defined( "WP_DEBUG" ) ) { define( 'WP_DEBUG', true ); } error_reporting(E_ALL); ini_set( 'display_errors', 1); ini_set( 'log_errors', 1 ); }View on GitHub