mirror of
https://github.com/hashicorp/vault.git
synced 2026-02-03 20:40:45 -05:00
plugins: allow all log levels for external plugins (#23771)
* plugins: allow all log levels for external plugins * changelog
This commit is contained in:
parent
6ac6030cb3
commit
2e85fdebbe
2 changed files with 4 additions and 1 deletions
3
changelog/23771.txt
Normal file
3
changelog/23771.txt
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
```release-note:improvement
|
||||
sdk/plugin: Fix an issue where external plugins were not reporting logs below INFO level
|
||||
```
|
||||
|
|
@ -97,7 +97,7 @@ func ServeMultiplex(opts *ServeOpts) error {
|
|||
logger := opts.Logger
|
||||
if logger == nil {
|
||||
logger = log.New(&log.LoggerOptions{
|
||||
Level: log.Info,
|
||||
Level: log.Trace,
|
||||
Output: os.Stderr,
|
||||
JSONFormat: true,
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue