Skip to content

Commit 9a5a158

Browse files
committed
Log filesystem path instead of string for C++20 compliance
1 parent 790018d commit 9a5a158

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

onnxruntime/core/session/utils.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ Status LoadPluginOrProviderBridge(const std::string& registration_name,
427427
true,
428428
ProviderLibraryPathType::Absolute);
429429
bool is_provider_bridge = provider_library->Load() == Status::OK(); // library has GetProvider
430-
LOGS_DEFAULT(INFO) << "Loading EP library: " << library_path
430+
LOGS_DEFAULT(INFO) << "Loading EP library: " << resolved_library_path
431431
<< (is_provider_bridge ? " as a provider bridge" : " as a plugin");
432432

433433
// create EpLibraryPlugin to ensure CreateEpFactories and ReleaseEpFactory are available

0 commit comments

Comments
 (0)