Linux 软件免费装
Banner图

JS Error Logger

开发者 jfgmedia
更新时间 2026年5月26日 11:59
捐献地址: 去捐款
PHP版本: 7.4 及以上
WordPress版本: 7.0
版权: GPLv2 or later
版权网址: 版权信息

标签

debug javascript js dashboard widget error reporting

下载

1.4.2 1.4.3 1.5 1.2 1.4.1 1.1.7 1.1.6 1.1.9 1.3.1 1.1.10 1.1.3 1.3 1.0 1.1 1.1.1 1.1.2 1.1.4 1.1.5 1.1.11 1.4

详情介绍:

The plugin catches most JS errors, logs them, and displays them in a dashboard widget. Here are some of its features: Developer hooks and filters The plugin cleans the log every 24 hours, to only keep the last 100 entries. You may use the "jserrlog_max_log_entries" WP filter to enable more or less entries, by returning an integer: add_filter('jserrlog_max_log_entries',function(){return 200;}) Alter error data: You may use the "jserrlog_pre_insert_error" WP filter to modify the error data before it's inserted into the log file: add_filter('jserrlog_pre_insert_error',function($error_data){return $error_data;}) Trigger integrations: You may use the "jserrlog_after_log" WP hook to trigger an action (Slack notification, etc.) after an error was logged: add_action('jserrlog_after_log',function($error_data){//do something}) Backup old errors: You may use the "jserrlog_before_log_maintenance" WP hook to trigger an action (archive errors, etc.) before old errors are deleted: add_action('jserrlog_before_log_maintenance',function($errors){//do something}) Request hardening: You may use the "jserrlog_enforce_same_host_origin" WP filter to require same-host Origin/Referer checks for logging requests (default true): add_filter('jserrlog_enforce_same_host_origin',function(){return true;}) You may use the "jserrlog_rate_limit_requests" and "jserrlog_rate_limit_window" WP filters to control request throttling (defaults: 60 requests per 60 seconds): add_filter('jserrlog_rate_limit_requests',function(){return 120;}); add_filter('jserrlog_rate_limit_window',function(){return 60;}); You may use the "jserrlog_max_payload_bytes", "jserrlog_max_batch_errors" and "jserrlog_max_error_field_length" WP filters to limit incoming payload sizes (defaults: 16384 bytes, 20 errors per batch, 512 chars per field): add_filter('jserrlog_max_payload_bytes',function(){return 32768;}); You may use the "jserrlog_duplicate_window" WP filter to suppress duplicate errors for a short period (default: 60 seconds): add_filter('jserrlog_duplicate_window',function(){return 30;}); Multisite The plugin works with multisite. There's one error log per site.

安装:

  1. Visit the Plugins page within your dashboard and select "Add New"
  2. Search for "JS Error Logger"
  3. Click "Install"

屏幕截图:

  • The full error log from within the plugin settings
  • Some of the settings

升级注意事项:

Not available at the moment

更新日志:

1.5 1.4.3 1.4 1.3.1 1.3 1.2 1.1.11 1.1.10 1.1.9 1.1.7 1.1.6 1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.0