Remove debug print statement

This commit is contained in:
Daniel Nelson 2019-12-02 20:03:25 -08:00
parent 88ab29ed63
commit 1b25a9c910
No known key found for this signature in database
GPG Key ID: CAAD59C9444F6155
1 changed files with 0 additions and 1 deletions

View File

@ -305,7 +305,6 @@ func (p *Parser) ParseLine(line string) (telegraf.Metric, error) {
log.Printf("E! Error parsing %s to int: %s", v, err)
} else {
timestamp = time.Unix(0, ms*int64(time.Millisecond))
fmt.Println(timestamp)
}
case EPOCH_NANO:
iv, err := strconv.ParseInt(v, 10, 64)