fix panic on missing formatter in console_exporter.ProcessorOptions

This commit is contained in:
2024-05-20 12:18:03 +02:00
parent d119563c7d
commit c70a285e70
2 changed files with 4 additions and 2 deletions

View File

@ -76,7 +76,8 @@ func NewProcessor(opts ProcessorOptions) trace.SpanProcessor {
if opts.TraceFormatter != nil {
formatter = *opts.TraceFormatter
} else {
formatter = TraceFormatter(nil)
fmt := NewPrettyMultilineFormatter()
formatter = fmt
}
if opts.FilterOnLevel != 0 {
lvl = opts.FilterOnLevel