mirror of
https://github.com/10h30/trestle.git
synced 2026-07-15 20:53:32 +09:00
Add new utilities.php with a custom logging function
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
<?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 );
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user