Skip to content

Commit

Permalink
Fix logging path typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zackkatz authored Aug 4, 2024
1 parent 2b62fde commit 1e161e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/Client/configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Make sure initialization happens before headers are sent. `init` is a good hook
| `menu/icon_url` | `string` | The URL to the icon to be used for this menu. The value is passed as `$icon_url` to the [`add_menu_page()` function](https://developer.wordpress.org/reference/functions/add_menu_page/). | `''` (empty string) | |
| `menu/priority` | `int` | The priority of the `admin_menu` action used by TrustedLogin. | `100` | |
| `menu/position` | `int` | The `$position` argument passed to the [`add_submenu_page()` function](https://developer.wordpress.org/reference/functions/add_submenu_page/) function. | `null` | |
| `logging/enabled` | `bool` | If enabled, logs are stored in `wp-uploads/trustedlogin-logs` | `false` | |
| `logging/enabled` | `bool` | If enabled, logs are stored in `wp-content/uploads/trustedlogin-logs` | `false` | |
| `logging/directory` | `null`,`string` | Override the directory where logs are stored. See [Logging](logging/) for more information. | `null` | |
| `logging/threshold` | `string` | Define what [PSR log level](https://www.php-fig.org/psr/psr-3/#5-psrlogloglevel) should be logged. To log everything, set the threshold to `debug`. | `notice` | |
| `logging/options` | `array` | Array of [KLogger Additional Options](https://github.com/katzgrau/klogger#additional-options) | `['extension' => 'log', 'dateFormat' => 'Y-m-d G:i:s.u', 'filename' => null, 'flushFrequency' => false, 'logFormat' => false, 'appendContext' => true ]` | |
Expand Down

0 comments on commit 1e161e0

Please sign in to comment.