Skip to content

Commit 9ee4d68

Browse files
committed
Change logger key name to snake case
1 parent 956de5d commit 9ee4d68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

filebeat/fileset/compatibility.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ func (p *Processor) String() string {
205205
// and adapts them for version of Elasticsearch used. Adapt can mean modifying
206206
// processor options or removing the processor.
207207
func adaptPipelineForCompatibility(esVersion common.Version, pipelineID string, content map[string]interface{}, log *logp.Logger) (err error) {
208-
log = log.With("pipelineID", pipelineID)
208+
log = log.With("pipeline_id", pipelineID)
209209
// Adapt the main processors in the pipeline.
210210
if err = adaptProcessorsForCompatibility(esVersion, content, "processors", false, log); err != nil {
211211
return err

0 commit comments

Comments
 (0)