Linux 软件免费装

Lumiblog Debug Log Inspector

开发者 lumiblog
更新时间 2026年1月30日 21:50
捐献地址: 去捐款
PHP版本: 7.0 及以上
WordPress版本: 6.9
版权: GPLv2 or later
版权网址: 版权信息

标签

debug log testing monitor error tracking

下载

1.0.0

详情介绍:

Lumiblog Debug Log Inspector is a powerful quality assurance and debugging tool that monitors your WordPress debug.log file for plugin-specific errors. Unlike other debug tools, it allows you to monitor ANY WordPress plugin through an easy-to-use settings interface - no coding required! Key Features Perfect For How It Works
  1. Install and activate the plugin
  2. Go to Settings > Log Inspector
  3. Add any plugin you want to monitor by providing:
  4. Plugin Name (e.g., "WooCommerce")
  5. Plugin File Path (e.g., "woocommerce/woocommerce.php")
  6. Search Terms (e.g., "woocommerce, wc-")
  7. Check the admin bar for real-time error status
Requirements To use this plugin effectively, you need to enable WordPress debug logging by adding these constants to your wp-config.php file: define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true );

安装:

Automatic Installation
  1. Log in to your WordPress admin panel
  2. Navigate to Plugins > Add New
  3. Search for "Lumiblog Debug Log Inspector"
  4. Click "Install Now" and then "Activate"
Manual Installation
  1. Upload the debug-log-inspector folder to the /wp-content/plugins/ directory
  2. Activate the plugin through the 'Plugins' menu in WordPress
  3. Go to Settings > Log Inspector to configure
After Installation
  1. Ensure WP_DEBUG_LOG is enabled in your wp-config.php file
  2. Navigate to Settings > Log Inspector
  3. Add plugins you want to monitor
  4. Look for "LOG INSPECTOR" in your WordPress admin bar

常见问题:

How do I enable debug logging?

Add these lines to your wp-config.php file (before the "That's all, stop editing!" line): define( 'WP_DEBUG', true ); define( 'WP_DEBUG_LOG', true );

What do the colors in the admin bar mean?

  • Green: All monitored plugins are error-free
  • Red: At least one plugin has errors in the debug log
  • Gray: Debug logging is not enabled

Can I monitor any WordPress plugin?

Yes! You can add any WordPress plugin to monitor. Just provide the plugin name, file path, and search terms through the settings page.

What are "Search Terms"?

Search terms are keywords that the plugin looks for in your debug.log file. For example, if you're monitoring WooCommerce, you might use "woocommerce, wc-" as search terms. These should be unique identifiers that appear in error messages from that plugin.

How do I find the plugin file path?

The plugin file path is usually in the format: folder-name/main-file.php For example:

  • WooCommerce: woocommerce/woocommerce.php
  • Contact Form 7: contact-form-7/wp-contact-form-7.php
  • Yoast SEO: wordpress-seo/wp-seo.php You can find this in your WordPress admin under Plugins > Installed Plugins (it's shown below each plugin name).

How much of the debug.log is scanned?

By default, the plugin scans the last 300KB of your debug.log file. You can customize this in Settings > Log Inspector > General Settings.

Will this slow down my site?

No. The plugin only runs in the WordPress admin area and uses efficient file reading techniques to minimize performance impact.

Can I temporarily disable monitoring for a plugin?

Yes! In the settings page, you can toggle any plugin on/off without deleting it from your list.

Does this work with Multisite?

Yes, the plugin works on WordPress Multisite installations.

Can I monitor custom/proprietary plugins?

Absolutely! As long as the plugin generates errors in the debug.log, you can monitor it.

How do I test if the plugin is working?

See the "Testing the Plugin" section below for detailed instructions on how to verify everything is working correctly.