License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html This plugin can manage the output log file, specify output directory an …
Control the output log file regardless of WP_DEBUG mode.
Specify output directory and file name, download and delete files.
And specify the date format as the file name, you can split the log every day and every month.
Just install from your WordPress “Plugins > Add New” screen and all will be well. Manual installation is very straightforward as well:
/wp-content/plugins/
directorySettings > WP Output Log File
and activ options you want.You can write customizing wordpress code ex. using theme functions.php file.
if ( function_exists( ‘wo_log’ ) ) {
wo_log( “Your message” ); // string
wo_log( [‘a’ => 1, ‘b’ => 2, ‘c’ => 3 ] ); // other data type
}
Just install from your WordPress “Plugins > Add New” screen and all will be well. Manual installation is very straightforward as well:
/wp-content/plugins/
directorySettings > WP Output Log File
and activ options you want.You can write customizing wordpress code ex. using theme functions.php file.
if ( function_exists( ‘wo_log’ ) ) {
wo_log( “Your message” ); // string
wo_log( [‘a’ => 1, ‘b’ => 2, ‘c’ => 3 ] ); // other data type
}