change error messages

This commit is contained in:
Max U 2018-07-02 13:18:43 -07:00
parent a79f1b7e0d
commit 9836b1eb02
1 changed files with 0 additions and 1 deletions

View File

@ -40,7 +40,6 @@ func (j *JSONPath) Parse(buf []byte) ([]telegraf.Metric, error) {
for k, v := range j.IntPath {
c := gjson.GetBytes(buf, v)
fields[k] = c.Int()
log.Printf("got a int: fields[%v]: %v", k, c.Int())
}
for k, v := range j.BoolPath {