mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-16 01:40:46 +08:00
chore: 简化 external_renderer_ipc 加载成功的日志
This commit is contained in:
@@ -112,7 +112,7 @@ bool MumuExtras::load_mumu_library()
|
||||
for (const auto& rel_path : kCandidateRelativePaths) {
|
||||
auto lib_path = mumu_path_ / rel_path;
|
||||
if (load_library(lib_path)) {
|
||||
LogInfo << "Successfully loaded MuMu external renderer library from: " << lib_path.string();
|
||||
LogInfo << "Successfully loaded MuMu external renderer library from: " << lib_path;
|
||||
loaded = true;
|
||||
break;
|
||||
}
|
||||
@@ -121,7 +121,7 @@ bool MumuExtras::load_mumu_library()
|
||||
if (!loaded) {
|
||||
LogError << "Failed to load library from all candidate paths";
|
||||
for (const auto& rel_path : kCandidateRelativePaths) {
|
||||
LogError << " tried: " << (mumu_path_ / rel_path).string();
|
||||
LogError << " tried: " << (mumu_path_ / rel_path);
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user