Skip to content

Commit

Permalink
fix: logging non existing order should be debug (#280)
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlopes committed Aug 16, 2022
1 parent eb0e64c commit ce099e8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ private <T> Integer tryOrderExtractedFrom(List<T> elements, Function<T, String>
try {
return Integer.parseInt(orderAsString);
} catch (Exception e) {
log.warn(
log.debug(
"Could not get order of feature {} from {} cause: {}",
name,
orderAsString,
Expand Down

0 comments on commit ce099e8

Please sign in to comment.