Reduce log level.

This commit is contained in:
Thierry Göckel 2020-08-25 17:21:56 +02:00
parent 0baf48698d
commit 4954aafed7

View File

@ -119,7 +119,7 @@ public class Table extends AbstractTextContainer {
try { try {
cellsToTheTop.add(rows.get(i).get(colIndex)); cellsToTheTop.add(rows.get(i).get(colIndex));
} catch (IndexOutOfBoundsException e) { } catch (IndexOutOfBoundsException e) {
log.warn("No cell {} in row {}, ignoring.", colIndex, rowIndex); log.debug("No cell {} in row {}, ignoring.", colIndex, rowIndex);
} }
} }
for (Cell topCell : cellsToTheTop) { for (Cell topCell : cellsToTheTop) {