Skip to content

Commit

Permalink
[OnnxRuntime] Update debug log message (#3463)
Browse files Browse the repository at this point in the history
Fixes: #3461
  • Loading branch information
frankfliu committed Sep 10, 2024
1 parent 8476565 commit c622853
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ private String getOrtxLibraryPath() {
Method method = clazz.getDeclaredMethod("getLibraryPath");
return (String) method.invoke(null);
} catch (Throwable e) {
logger.debug("Failed to load onnx extension", e);
logger.info("Onnx extension not found in classpath.");
logger.trace("Failed to load onnx extension", e);
}
return null;
}
Expand Down

0 comments on commit c622853

Please sign in to comment.