Skip to content

Commit

Permalink
Remove "error" word when logging a warning about unable to parse geo …
Browse files Browse the repository at this point in the history
…info
  • Loading branch information
leszko committed Jul 25, 2024
1 parent 55a4a53 commit ee4d9cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handlers/analytics.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func (c *AnalyticsHandlersCollection) Log() httprouter.Handle {
}
geo, err := parseAnalyticsGeo(r)
if err != nil {
glog.Warning("error parsing geo info from analytics log request header, err=%v", err)
glog.Warning("cannot parse geo info from analytics log request header, err=%v", err)
}
extData, err := c.extFetcher.Fetch(log.PlaybackID)
if err != nil {
Expand Down

0 comments on commit ee4d9cb

Please sign in to comment.