From 07a9a0ebc0ebda8eacf11b7d62a14a03446e60ad Mon Sep 17 00:00:00 2001 From: Andrew Kenworthy Date: Fri, 13 Oct 2023 09:30:09 +0200 Subject: [PATCH] review feedback --- rust/crd/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rust/crd/src/lib.rs b/rust/crd/src/lib.rs index 5d614378..34481eae 100644 --- a/rust/crd/src/lib.rs +++ b/rust/crd/src/lib.rs @@ -252,8 +252,8 @@ impl GitSync { // both "-git-config" and "--gitconfig" are recognized by gitsync if key.to_lowercase().ends_with("-git-config") { if value.to_lowercase().contains(GIT_SAFE_DIR) { - tracing::warn!("Config option {:?} contains a value for {GIT_SAFE_DIR} that duplicates - the constant value used internally!", value); + tracing::warn!("Config option {value:?} contains a value for {GIT_SAFE_DIR} that overrides + the value of this operator. Git-sync functionality will probably not work as expected!"); } git_config = format!("{git_config},{value}"); } else {