Skip to content

Commit

Permalink
Fix typo in legacy.go (#831)
Browse files Browse the repository at this point in the history
overriden -> overridden

Co-authored-by: Krisztián Gödrei <[email protected]>
  • Loading branch information
eltociear and godrei authored Dec 2, 2022
1 parent cb1714b commit 1db2c1c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions analytics/legacy.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,10 @@ func LogMessage(logLevel string, stepID string, tag string, data map[string]inte
}

if v, ok := e.Data["step_id"]; ok {
log.Printf("internal logger: data.step_id (%s) will be overriden with (%s) ", v, stepID)
log.Printf("internal logger: data.step_id (%s) will be overridden with (%s) ", v, stepID)
}
if v, ok := e.Data["tag"]; ok {
log.Printf("internal logger: data.tag (%s) will be overriden with (%s) ", v, tag)
log.Printf("internal logger: data.tag (%s) will be overridden with (%s) ", v, tag)
}

e.Data["step_id"] = stepID
Expand Down

0 comments on commit 1db2c1c

Please sign in to comment.