Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- </php
- // WordPress - Write variables to the debug log
- function write_log ( $log ) {
- if ( is_array( $log ) || is_object( $log ) ) {
- error_log( print_r( $log, true ) );
- } else {
- error_log( $log );
- }
- }
- // Usage
- function my_new_function_that_doesnt_work( $value ) {
- write_log( $value );
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement