Skip to content

Commit

Permalink
Update docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeroen-G authored Nov 27, 2023
1 parent ec0d0d4 commit 98373db
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
5 changes: 5 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [3.10.0]

### Added
- The configurable logger may now be a channel name.

## [3.9.0]

### Changed
Expand Down
6 changes: 6 additions & 0 deletions docs/logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ To enable the logger set `EXPLORER_ELASTIC_LOGGER_ENABLED=true` in your environm
See also the [SDK](https://github.com/elastic/elasticsearch-php/blob/main/docs/logger.asciidoc) docs.
More information on loggers in Laravel can be found in [Laravel's docs](https://laravel.com/docs/logging).

If you pass a string value as the logger it will be interpreted as the name of a log channel (see Laravel's docs for more information).

Examples:
```php
'logger' => new \Psr\Log\NullLogger(),
Expand All @@ -15,3 +17,7 @@ Examples:
```php
'logger' => \Illuminate\Support\Facades\Log::channel('daily'),
```

```php
'logger' => 'daily',
```

0 comments on commit 98373db

Please sign in to comment.