Skip to content

Commit

Permalink
HDDS-11486. SnapshotDiffManager prints ERROR for NativeLibraryNotLoad…
Browse files Browse the repository at this point in the history
…edException
  • Loading branch information
chungen0126 committed Oct 9, 2024
1 parent e00f7ae commit 78b8377
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 Handling raw sst file by deltas", e);
return false;
}
}
Expand Down

0 comments on commit 78b8377

Please sign in to comment.