Plugin Directory

Changeset 3319133


Ignore:
Timestamp:
06/28/2025 12:32:38 PM (9 months ago)
Author:
A5hleyRich
Message:

Attempt to fix readme formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • debughawk/tags/0.8.1/readme.txt

    r3319126 r3319133  
    39394. Configure the plugin by adding the configuration provided by DebugHawk to your `wp-config.php` file, above the line that says `/* That's all, stop editing! */`:
    4040
    41     define( 'DEBUGHAWK_CONFIG', [
    42         'enabled' => true,
    43         'endpoint' => '...',
    44         'secret' => '...',
    45     ] );
    46 
     41`define( 'DEBUGHAWK_CONFIG', [
     42    'enabled' => true,
     43    'endpoint' => '...',
     44    'secret' => '...',
     45] );`
    4746
    4847== Configuration ==
     
    5049You can further customize DebugHawk, with the following additional options:
    5150
    52     define('DEBUGHAWK_CONFIG', [
    53         'enabled'  => true,
    54         'endpoint' => '...',
    55         'secret' => '...',
    56         'sample_rate' => 0.25,           // Optional: Sampling rate (0-1, default: 1.0)
    57         'slow_queries_threshold' => 50,  // Optional: Slow query threshold in ms (default: 50)
    58         'trace_redirects' => true,       // Optional: Track redirects (default: true)
    59         'trace_admin_pages' => true,     // Optional: Track admin pages (default: true)
    60     ]);
    61 
     51`define('DEBUGHAWK_CONFIG', [
     52    'enabled'  => true,
     53    'endpoint' => '...',
     54    'secret' => '...',
     55    'sample_rate' => 0.25,           // Optional: Sampling rate (0-1, default: 1.0)
     56    'slow_queries_threshold' => 50,  // Optional: Slow query threshold in ms (default: 50)
     57    'trace_redirects' => true,       // Optional: Track redirects (default: true)
     58    'trace_admin_pages' => true,     // Optional: Track admin pages (default: true)
     59]);`
    6260
    6361== How It Works ==
     
    7068
    7169The plugin works transparently without any additional user interaction after configuration.
     70
     71== Changelog ==
     72
     73= 0.8.1 =
     74* Initial release on WordPress.org
Note: See TracChangeset for help on using the changeset viewer.