remove debug statements

This commit is contained in:
Jochen
2025-12-10 16:26:59 +11:00
parent 87bceba54f
commit 5f3a2a4203
3 changed files with 0 additions and 19 deletions

View File

@@ -59,11 +59,9 @@ fn get_todo_path() -> std::path::PathBuf {
fn get_logs_dir() -> std::path::PathBuf {
if let Ok(workspace_path) = std::env::var("G3_WORKSPACE_PATH") {
let logs_path = std::path::PathBuf::from(workspace_path).join("logs");
eprintln!("[DEBUG] get_logs_dir: Using G3_WORKSPACE_PATH, logs_path={}", logs_path.display());
logs_path
} else {
let logs_path = std::env::current_dir().unwrap_or_default().join("logs");
eprintln!("[DEBUG] get_logs_dir: G3_WORKSPACE_PATH not set, using current dir, logs_path={}", logs_path.display());
logs_path
}
}