Skip to content

Commit

Permalink
HDDS-11486. Reduce log level for NativeLibraryNotLoadedException in S…
Browse files Browse the repository at this point in the history
…napshotDiffManager (apache#7290)

(cherry picked from commit d473134)
  • Loading branch information
chungen0126 authored Oct 12, 2024
1 parent 40a228c commit 76d4fd6
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,8 @@ private boolean initNativeLibraryForEfficientDiff(final OzoneConfiguration conf)
try {
return ManagedRawSSTFileReader.loadLibrary();
} catch (NativeLibraryNotLoadedException e) {
LOG.error("Native Library for raw sst file reading loading failed.", e);
LOG.warn("Native Library for raw sst file reading loading failed." +
" Fallback to performing a full diff instead. {}", e.getMessage());
return false;
}
}
Expand Down

0 comments on commit 76d4fd6

Please sign in to comment.