diff --git a/.gitlab/ci/build.gitlab-ci.yml b/.gitlab/ci/build.gitlab-ci.yml
index 067dcfd3fe20f4b98efb10ab62a7e99ec0b5b33e..21013c5e3cf37fbcf557b91275ff229f1b55d515 100644
--- a/.gitlab/ci/build.gitlab-ci.yml
+++ b/.gitlab/ci/build.gitlab-ci.yml
@@ -15,6 +15,7 @@ build:ubuntu_cpp:
     - apt-get -qq install -y jq
     # Check if a branch with the same name exist on the dependency repository
     - BRANCH_TO_PULL="dev" # default branch
+    - set -x
     - >
       if [ "$CI_MERGE_REQUEST_ID" ]; then # CASE MERGE REQUEST
           echo "Merge request pipeline detected"
@@ -66,6 +67,7 @@ build:ubuntu_cpp:
       else
         echo "Successful job \"$DEPENDENCY_JOB\" found in branch \"$BRANCH_TO_PULL\" for project \"$DEPENDENCY_NAME\""
       fi
+    - set +x
 
     - echo "curling from \"https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/jobs/$JOB_ID/artifacts\""
     - curl --location --output build_artifacts.zip --header "PRIVATE_TOKEN:$CI_JOB_TOKEN" "https://gitlab.eclipse.org/api/v4/projects/$DEPENDENCY_ID/jobs/$JOB_ID/artifacts"