Sarathlal N

Write custom data to WordPress default debug.log file

The debugging WordPress code is so simple and WordPress have a nice debug systems to simplify the process as well as standardize code across the core, plugins and themes.

During theme & plugin development, I feel that the debug.log file was the most useful tool. It help me to sort out error in easier manner.

additionally, often I feel that I have to confirm the values of my objects, variables etc in my code during development. The echo & var_dump() are too useful. But in few situations, they are not enough.

Below you can find a handy function that help us to write our custom data in the WordPress debug.log file. Put the below code snippet in your theme’s functions.php file or your custom plugin 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 );
			}
		}
	}
}

Then call the function with our variable in our code like below one.

write_log($my_variable);

Check your debug.log file and if there is value in your variable, you can see that one.

Got a project in mind? Send me a quick message, and I'll get back to you within 24 hours!.

Recent Posts

  1. Disabling Payment Methods in WooCommerce Based on Conditions
  2. How to Update Product Quantity in WooCommerce Using Custom Code
  3. Dynamically Generating a Table of Contents in WordPress
  4. Direct Checkout in WooCommerce - Add Product to Cart from Checkout Page & Skip Shop, Product, and Cart Pages
  5. Understanding the Impact of git reset --hard Command

Your Questions / Comments

If you found this article interesting, found errors, or just want to discuss about it, please get in touch.