Print full line with error in the importer log. Close #2549.

This commit is contained in:
Kailash Nadh 2025-07-05 18:47:10 +05:30
parent 4f6880d38e
commit a424f01fc6

View file

@ -548,7 +548,7 @@ func (s *Session) LoadCSV(srcPath string, delim rune) error {
sub, err = s.im.ValidateFields(sub)
if err != nil {
s.log.Printf("skipping line %d: %s: %v", i, sub.Email, err)
s.log.Printf("skipping line %d: %v: %v", i, err, cols)
continue
}