Skip to content

Commit

Permalink
Merge pull request #720 from ashitsalesforce/master
Browse files Browse the repository at this point in the history
skip logging of debug message for for each CSV file row
  • Loading branch information
ashitsalesforce committed Jul 9, 2023
2 parents 301e5d9 + b65e3a7 commit 310e32f
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,6 @@ record = csvReader.nextRecord();
String errMsg = Messages.getFormattedString("CSVFileDAO.errorRowTooSmall", new String[]{
String.valueOf(currentRowNumber), String.valueOf(record.size()), String.valueOf(headerRow.size())});
throw new DataAccessRowException(errMsg);
} else {
LOGGER.debug(Messages.getFormattedString("CSVFileDAO.debugMessageRowSize",
new String[] {
String.valueOf(currentRowNumber), String.valueOf(record.size())
}
));
}

Row row = new Row(record.size());
Expand Down

0 comments on commit 310e32f

Please sign in to comment.