fix: hide default_log_level from public

This commit is contained in:
Carson M.
2026-01-15 01:52:25 -06:00
parent dab1a081ea
commit c959e1fde5

View File

@@ -89,7 +89,7 @@ macro_rules! drop {
pub(crate) use create;
pub(crate) use drop;
pub fn default_log_level() -> ort_sys::OrtLoggingLevel {
pub(crate) fn default_log_level() -> ort_sys::OrtLoggingLevel {
#[cfg(feature = "std")]
match std::env::var("ORT_LOG").as_deref() {
Ok("fatal") => ort_sys::OrtLoggingLevel::ORT_LOGGING_LEVEL_FATAL,