From fc74d27991142378c4e0a678c8c94758917a691e Mon Sep 17 00:00:00 2001 From: Thorsten Sommer Date: Tue, 3 Sep 2024 16:12:30 +0200 Subject: [PATCH] Log the working directory --- runtime/src/main.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/src/main.rs b/runtime/src/main.rs index 3c26a56b..de22c6a3 100644 --- a/runtime/src/main.rs +++ b/runtime/src/main.rs @@ -163,6 +163,9 @@ async fn main() { .start().expect("Cannot start logging"); info!("Starting MindWork AI Studio:"); + let working_directory = std::env::current_dir().unwrap(); + info!(".. The working directory is: '{working_directory:?}'"); + info!(".. Version: v{app_version} (commit {app_commit_hash}, build {build_number})"); info!(".. Build time: {build_time}"); info!(".. .NET SDK: v{dotnet_sdk_version}");