suppression log

This commit is contained in:
laurentu 2024-08-08 16:04:56 +02:00
parent 9301f353ba
commit 7bf103427b
1 changed files with 0 additions and 1 deletions

View File

@ -116,7 +116,6 @@ func (p *CsvParser) Parse(line string) (map[string]string, error) {
if state.enclosed {
field = strings.TrimRight(strings.TrimLeft(field, string(state.encloserStart)), string(state.encloserEnd))
}
fmt.Printf("field:%s:\n", field)
if currentFieldIndex <= p.maxFieldIndex && p.fields[currentFieldIndex] != p.ignore {
ret[p.fields[currentFieldIndex]] = field
}