Skip to content

Commit

Permalink
CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
srtfisher committed Apr 26, 2024
1 parent d5c86c1 commit 56b999b
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
This library adheres to [Semantic Versioning](https://semver.org/) and [Keep a
CHANGELOG](https://keepachangelog.com/en/1.0.0/).

## Unreleased

### Added

- New filter `ai_logger_unrestricted_logging` to allow unrestricted logging
without checking if the log was recently seen.
- Overhaul of the log backtrace display in the admin.

## 2.3.2

- Add return types to logger to appease `psr/log` v3.
Expand Down
9 changes: 8 additions & 1 deletion inc/class-cli.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,14 @@ public function generate( $args, $assoc_args ) {
[
'context' => $assoc_args['log-context'],
'example_context' => $i,
]
'example_data' => [
'key' => 'value',
'key_2' => 'value_2',
'key_3' => [
'key' => 'value',
],
],
],
);
}

Expand Down

0 comments on commit 56b999b

Please sign in to comment.