From a4f1ba443de43364e02c13350bcd2cc9b49ab450 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Fri, 5 Jun 2026 22:33:43 +0200 Subject: [PATCH] fix: route log output to stdout for SSH visibility All log_* functions were writing to stderr, causing output to be invisible in SSH sessions where stderr is not forwarded or captured. Co-Authored-By: Claude Sonnet 4.6 --- scripts/arty.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/scripts/arty.sh b/scripts/arty.sh index c20ec175..56e3a3c1 100755 --- a/scripts/arty.sh +++ b/scripts/arty.sh @@ -43,29 +43,29 @@ declare -g -A ARTY_INSTALL_STACK # Logging functions log_info() { - echo -e "${BLUE}[INFO]${NC} $1" >&2 + echo -e "${BLUE}[INFO]${NC} $1" } log_success() { - echo -e "${GREEN}[ok]${NC} $1" >&2 + echo -e "${GREEN}[ok]${NC} $1" } log_warn() { - echo -e "${YELLOW}[!]${NC} $1" >&2 + echo -e "${YELLOW}[!]${NC} $1" } log_error() { - echo -e "${RED}[x]${NC} $1" >&2 + echo -e "${RED}[x]${NC} $1" } log_debug() { if [[ "$ARTY_VERBOSE" == "1" ]]; then - echo -e "${CYAN}[DEBUG]${NC} $1" >&2 + echo -e "${CYAN}[DEBUG]${NC} $1" fi } log_step() { - echo -e "${CYAN}[!]${NC} $1" >&2 + echo -e "${CYAN}[!]${NC} $1" } # ============================================================================