Skip to content

Instantly share code, notes, and snippets.

@TylerBarnes
Created March 2, 2019 00:57
Show Gist options
  • Select an option

  • Save TylerBarnes/a502468a4dc39bb5fcc464aa73d2c404 to your computer and use it in GitHub Desktop.

Select an option

Save TylerBarnes/a502468a4dc39bb5fcc464aa73d2c404 to your computer and use it in GitHub Desktop.
Write out a multiline log to the wordpress debug.log file
<?php
/**
* Write out a multiline log to the wordpress debug.log file
*/
if (!function_exists('write_log')) {
function write_log($log)
{
if (true === WP_DEBUG) {
if (is_array($log) || is_object($log)) {
error_log(print_r($log, true));
} else {
error_log($log);
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment