From ff6597c5cf8a240b388e190d002249d264a7e86c Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Mon, 29 Sep 2025 10:39:46 -0500 Subject: [PATCH] Adjusted ROLE detection messages to all debug as these are expected messages and not errors Ticket: none Changelog: none --- build-scripts/compile-options | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-scripts/compile-options b/build-scripts/compile-options index abf8ec91c..2dc2ec85c 100644 --- a/build-scripts/compile-options +++ b/build-scripts/compile-options @@ -196,7 +196,7 @@ hub) ROLE=hub ;; *) - log_error "Bad or unset EXPLICIT_ROLE '$EXPLICIT_ROLE': attempting autodetection" + log_debug "Bad or unset EXPLICIT_ROLE '$EXPLICIT_ROLE': attempting autodetection" case x"$label" in x) log_debug "label is not set, assuming that this is not the main build job; Setting ROLE=agent." @@ -207,7 +207,7 @@ hub) ROLE=hub ;; *) - log_error "Autodetection failed for label '$label': defaulting to 'agent'" + log_debug "Autodetection failed for label '$label': defaulting to 'agent'" ROLE=agent ;; esac