mirror of
https://github.com/10h30/trestle.git
synced 2026-07-11 18:56:07 +09:00
21 lines
372 B
PHP
21 lines
372 B
PHP
<?php
|
|
/**
|
|
* Utility functions.
|
|
*
|
|
* @since 2.1.0
|
|
*
|
|
* @package Trestle
|
|
*/
|
|
|
|
/**
|
|
* Custom logging function for development purposes.
|
|
*/
|
|
function trestle_log( $log ) {
|
|
if ( true === WP_DEBUG ) {
|
|
if ( is_array( $log ) || is_object( $log ) ) {
|
|
error_log( print_r( $log, true ) );
|
|
} else {
|
|
error_log( $log );
|
|
}
|
|
}
|
|
} |