diff --git a/lib/git/src/lib.rs b/lib/git/src/lib.rs index 910cf23df..370cca363 100644 --- a/lib/git/src/lib.rs +++ b/lib/git/src/lib.rs @@ -13,7 +13,7 @@ use monitor_client::entities::{ use run_command::async_run_command; use tracing::instrument; -#[tracing::instrument] +#[tracing::instrument(level = "debug")] pub async fn pull( path: &Path, branch: &Option, @@ -67,7 +67,7 @@ pub async fn pull( logs } -#[tracing::instrument(skip(github_token))] +#[tracing::instrument(level = "debug", skip(github_token))] pub async fn clone( clone_args: T, repo_dir: &Path, @@ -153,7 +153,7 @@ where Ok(logs) } -#[tracing::instrument(skip(destination, access_token))] +#[tracing::instrument(level = "debug", skip(destination, access_token))] async fn clone_inner( repo: &str, destination: &Path,