Changeset 13176 for trunk/wp-includes/default-constants.php
- Timestamp:
- 02/17/2010 01:14:45 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/default-constants.php
r13062 r13176 8 8 /** 9 9 * Defines initial WordPress constants 10 * 10 * 11 * @see wp_debug_mode() 12 * 11 13 * @since 3.0.0 12 14 */ … … 44 46 define( 'WP_DEBUG', false ); 45 47 46 // Add define('WP_DEBUG_DISPLAY', false); to wp-config.php to use the globally configured setting for display_errors and not force it to On48 // Add define('WP_DEBUG_DISPLAY', false); to wp-config.php use the globally configured setting for display_errors and not force errors to be displayed. 47 49 if ( !defined('WP_DEBUG_DISPLAY') ) 48 50 define( 'WP_DEBUG_DISPLAY', true ); 49 51 50 // Add define('WP_DEBUG_LOG', true); to enable php debug logging to WP_CONTENT_DIR/debug.log52 // Add define('WP_DEBUG_LOG', true); to enable error logging to wp-content/debug.log. 51 53 if ( !defined('WP_DEBUG_LOG') ) 52 54 define('WP_DEBUG_LOG', false);
Note: See TracChangeset
for help on using the changeset viewer.