Skip to content

Commit

Permalink
Add more info to log about unknown stream filter
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximPlusov committed Sep 27, 2024
1 parent df916a2 commit e20dd57
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public static ASInputStream getDecodeFilter(final ASAtom filterName,
if (filterFactory != null) {
return filterFactory.getInFilter(inputStream, decodeParams);
}
LOGGER.log(Level.SEVERE, "Unknown decode filter");
LOGGER.log(Level.SEVERE, "Unknown decode filter " + filterName);
return new ASInFilter(inputStream) {
@Override
public int read() {
Expand Down

0 comments on commit e20dd57

Please sign in to comment.