2024-01-14 18:43:11 -05:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# This script has been created as part of the Blueprint source code
|
2024-01-15 11:40:50 -05:00
|
|
|
# and uses the same license as the rest of the codebase.
|
2024-01-14 18:43:11 -05:00
|
|
|
|
|
|
|
PRINT() {
|
2024-01-15 12:05:22 -05:00
|
|
|
DATE=$(date +"%H:%M:%S")
|
|
|
|
DATEDEBUG=$(date +"%Y-%m-%d %H:%M:%S")
|
2024-01-14 18:43:11 -05:00
|
|
|
TYPE="$1"
|
|
|
|
MESSAGE="$2"
|
|
|
|
|
|
|
|
BOLD=$(tput bold)
|
|
|
|
RESET=$(tput sgr0)
|
2024-01-15 11:40:50 -05:00
|
|
|
SECONDARY="\033[2m"
|
2024-01-14 18:43:11 -05:00
|
|
|
|
2024-07-06 07:59:26 -04:00
|
|
|
if [[ $TYPE == "INFO" ]]; then ICON=""; READABLETYPE="Info"; PRIMARY=$(tput setaf 4); fi
|
|
|
|
if [[ $TYPE == "WARNING" ]]; then ICON=""; READABLETYPE="Warning"; PRIMARY=$(tput setaf 3); fi
|
|
|
|
if [[ $TYPE == "FATAL" ]]; then ICON=""; READABLETYPE="Fatal"; PRIMARY=$(tput setaf 1); fi
|
|
|
|
if [[ $TYPE == "SUCCESS" ]]; then ICON=""; READABLETYPE="Success"; PRIMARY=$(tput setaf 2); fi
|
|
|
|
if [[ $TYPE == "INPUT" ]]; then ICON=""; READABLETYPE="Input"; PRIMARY=$(tput setaf 5); fi
|
2024-02-27 16:09:33 -05:00
|
|
|
if [[ $TYPE == "DEBUG" ]]; then PRIMARY="$SECONDARY"; fi
|
2024-01-14 18:43:11 -05:00
|
|
|
|
2024-07-06 07:59:26 -04:00
|
|
|
if [[ $TYPE != "DEBUG" ]]; then echo -e "${SECONDARY}${DATE}${RESET} ${PRIMARY}${TYPE}:${RESET} $MESSAGE${RESET}"; fi
|
2024-01-15 12:05:22 -05:00
|
|
|
echo -e "${BOLD}${SECONDARY}$DATEDEBUG${RESET} ${PRIMARY}${TYPE}:${RESET} $MESSAGE" >> "$FOLDER"/.blueprint/extensions/blueprint/private/debug/logs.txt
|
2024-01-14 18:43:11 -05:00
|
|
|
}
|