Fixed format in log message for excel

This commit is contained in:
2022-07-25 13:31:21 -05:00
parent fa563d50cc
commit d51b868ba3

View File

@ -180,7 +180,7 @@ public class ReportAction
if(countFromPreExecute != null)
{
LOG.info(String.format("Processed %,d of %,d records so far"), recordCount, countFromPreExecute);
LOG.info(String.format("Processed %,d of %,d records so far", recordCount, countFromPreExecute));
}
else
{