Skip to content

Commit

Permalink
perf: less verbose message when compressor loading fails
Browse files Browse the repository at this point in the history
  • Loading branch information
bogovicj authored and axtimwalde committed Apr 10, 2024
1 parent b692b39 commit 6b6d4d2
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,7 @@ public static synchronized void update(final boolean override) {
newInstance.compressionParameters.put(type, parameters);
} catch (final ClassNotFoundException | NoSuchMethodException | ClassCastException
| UnsatisfiedLinkError e) {
System.err.println("Compression '" + item.className() + "' could not be registered because:");
e.printStackTrace(System.err);
System.err.println("Compression '" + item.className() + "' could not be registered");
}
}

Expand Down

0 comments on commit 6b6d4d2

Please sign in to comment.