Skip to content
This repository was archived by the owner on Jul 4, 2025. It is now read-only.

Commit 87b2aa4

Browse files
committed
chore: log
1 parent 886222d commit 87b2aa4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

engine/extensions/local-engine/local_engine.cc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -548,6 +548,8 @@ void LocalEngine::LoadModel(std::shared_ptr<Json::Value> json_body,
548548
auto log_path =
549549
(file_manager_utils::GetCortexLogPath() / "logs" / "cortex.log").string();
550550
CTL_DBG("log: " << log_path);
551+
CTL_INF("exe path: "
552+
<< file_manager_utils::GetExecutableFolderContainerPath().string());
551553
auto result = cortex::process::SpawnProcess(
552554
v, log_path, log_path,
553555
file_manager_utils::GetExecutableFolderContainerPath().string());

engine/utils/dylib_path_manager.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ cpp::result<void, std::string> DylibPathManager::RegisterPath(
2626
}
2727
return cpp::fail("Failed to add DLL directory: " + path.string());
2828
} else {
29-
CTL_DBG("Added DLL directory: " << path.string());
29+
CTL_INF("Added DLL directory: " << path.string());
3030
}
3131

3232
dylib_paths.push_back({path, cookie});

0 commit comments

Comments
 (0)