Plugin info

Total downloads: 3,551
Active installs: 100
Total reviews: 1
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 1
Last updated: 5/2/2016 (3530 days ago)
Added to WordPress: 4/5/2016 (9 years old)
Minimum WordPress version: 2.6.0
Tested up to WordPress version: 4.5.33
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3530 days ago • 1 reviews

22/100

Is Debug Log abandoned?

Possibly abandoned (last update 3530 days ago).

Compatibility

Requires WordPress: 2.6.0
Tested up to: 4.5.33
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

BugFu Console Debugger
Rating 4.8/5 (17 reviews)Active installs 400
WP Output Log File
Rating 0.0/5 (0 reviews)Active installs 100
KolorWeb Log Manager: cleaver debugging management
Rating 5.0/5 (3 reviews)Active installs 30
Debug Log Parser
Rating 3.0/5 (2 reviews)Active installs 10
error_log File Viewer
Rating 3.0/5 (2 reviews)Active installs 10
WP Viewer Log
Rating 0.0/5 (0 reviews)Active installs 10

Description

If the log is long, the latest lines are show at the top to avoid scrolling. Line numbers are shown for reference.

Logs over 5MB do not load until you confirm you are sure, or you can opt to delete the log and start afresh.

Only admins can view (or anyone you give the capability “manage_options”).

Debug Log only works if it’s enabled in wp-config.php. See https://codex.wordpress.org/Debugging_in_WordPress#WP_DEBUG_LOG

Recommended configuration:

define( 'WP_DEBUG', true );// just toggle this line to false to turn off
if ( WP_DEBUG ) {
    define( 'WP_DEBUG_LOG', true );
    define( 'WP_DEBUG_DISPLAY', false );
    @ini_set( 'display_errors', 0 );
}

Installation

  1. Install as you would any plugin.

Frequently Asked Questions

How do I change the number lines in Latest Errors?

add_filter( ‘debug_log_latest_count’, function(){ return 20; } );

How do I turn Latest Errors off?

Same as above but use 0… or be fancy:
add_filter( ‘debug_log_latest_count’, ‘__return_false’ );

How do I change or turn off the file size check?

Same deal. The number here is megabytes.

add_filter( 'debug_log_too_big', function(){ return 2; } );

add_filter( 'debug_log_too_big', '__return_false' );

Review feed

No reviews available

Screenshots

  1. Basic Screenshot

    Basic Screenshot

  2. Warning before loading big files.

    Warning before loading big files.

Changelog

0.3

  • Float delete button for easier access

0.2

  • Added “Recent Errors” functionality
  • Added snippet to paste in wp-config when debug is off

0.1

  • Initial Release