From 9e13f41143b386df471a4a97ca6b6e48785349b9 Mon Sep 17 00:00:00 2001 From: Grische <2787581+grische@users.noreply.github.com> Date: Tue, 11 Jun 2024 15:43:55 +0200 Subject: [PATCH] fix(database/influxdb): typo log messages (#234) --- database/influxdb/database.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/database/influxdb/database.go b/database/influxdb/database.go index 40d3dc2..cd636be 100644 --- a/database/influxdb/database.go +++ b/database/influxdb/database.go @@ -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 }