Skip to content

Instantly share code, notes, and snippets.

@gMagicScott
Created May 22, 2013 17:03
Show Gist options
  • Save gMagicScott/5629170 to your computer and use it in GitHub Desktop.
Save gMagicScott/5629170 to your computer and use it in GitHub Desktop.
<?php
//* ======================
// Turn Developer Mode On
// ======================
define('WP_DEBUG', true);
// Enable Debug logging to the /wp-content/debug.log file
define('WP_DEBUG_LOG', true);
// Save MySQL Queries for Debugging
define('SAVEQUERIES', true);
// */
<?php
// =================================================================
// Debug mode
// Debugging? Enable these by over-riding in local-config.php
// =================================================================
if ( !defined( 'SAVEQUERIES' ) ) {
define( 'SAVEQUERIES', false );
}
if ( !defined( 'WP_DEBUG' ) ) {
define( 'WP_DEBUG', false );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment