chore: add more logging

This commit is contained in:
Kasper Juul Hermansen 2025-02-13 23:01:06 +01:00
parent 1428181414
commit b629bcf924
Signed by: kjuulh
SSH Key Fingerprint: SHA256:RjXh0p7U6opxnfd3ga/Y9TCo18FYlHFdSpRIV72S/QM

View File

@ -40,9 +40,13 @@ impl PlanReconciler {
local::reconcile(source, &plan_dir).await?;
}
crate::model::ProjectPlan::NoPlan => {
tracing::debug!("no plan, returning")
tracing::debug!("no plan, returning");
return Ok(());
}
}
tracing::info!("recociled project");
Ok(())
}
}