Skip to content

Commit

Permalink
fix(database/influxdb): typo log messages (#234)
Browse files Browse the repository at this point in the history
  • Loading branch information
grische authored Jun 11, 2024
1 parent c19c1ae commit 9e13f41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions database/influxdb/database.go
Original file line number Diff line number Diff line change
Expand Up @@ -103,13 +103,13 @@ func (conn *Connection) addPoint(name string, tags models.Tags, fields models.Fi
log.WithFields(map[string]interface{}{
"name": name,
"tag": tag,
}).Warnf("count not save tag configuration on point")
}).Warnf("could not save tag configuration on point")
}
}
}
point, err := client.NewPoint(name, tags.Map(), fields, t...)
if err != nil {
log.Panicf("count not save points: %s", err)
log.Panicf("could not save points: %s", err)
}
conn.points <- point
}
Expand Down

0 comments on commit 9e13f41

Please sign in to comment.