Prettier setup logging.

This commit is contained in:
2025-09-28 15:38:39 -07:00
parent 47c7d40ee1
commit 8592eb13e3

View File

@@ -41,23 +41,23 @@ NC='\033[0m' # No Color
# Print functions for consistent output formatting
print_header() {
echo -e "\n${BLUE}=== $1 ===${NC}\n"
echo -e "\n${BLUE} $1 ===${NC}\n"
}
print_info() {
echo -e "${BLUE}INFO:${NC} $1"
echo -e "${BLUE} ${NC} $1"
}
print_warning() {
echo -e "${YELLOW}WARNING:${NC} $1"
echo -e "${YELLOW}⚠️ ${NC} $1"
}
print_success() {
echo -e "${GREEN}SUCCESS:${NC} $1"
echo -e "${GREEN}${NC} $1"
}
print_error() {
echo -e "${RED}ERROR:${NC} $1"
echo -e "${RED}${NC} $1"
}
# =============================================================================