From b9caf1d04ea340527658dfa31cd19f35f3f3c37c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AD=99=E6=8C=AF=E5=AE=87?= <> Date: Wed, 22 Jan 2025 15:26:07 +0800 Subject: [PATCH] feat(SourceFetcher): log configurations in fetch method for debugging MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 孙振宇 <> --- .../src/com/freeleaps/devops/SourceFetcher.groovy | 1 + 1 file changed, 1 insertion(+) diff --git a/first-class-pipeline/src/com/freeleaps/devops/SourceFetcher.groovy b/first-class-pipeline/src/com/freeleaps/devops/SourceFetcher.groovy index 56fc8b53..e7f9704b 100644 --- a/first-class-pipeline/src/com/freeleaps/devops/SourceFetcher.groovy +++ b/first-class-pipeline/src/com/freeleaps/devops/SourceFetcher.groovy @@ -8,6 +8,7 @@ class SourceFetcher { } def fetch(Map configurations) { + echo configurations if (configurations.SERVICE_GIT_REPO == null || configurations.SERVICE_GIT_REPO.isEmpty()) { steps.error("SERVICE_GIT_REPO is required") }