Update logging template

This commit is contained in:
JeremyStar™ 2024-03-10 22:38:22 +01:00
parent dcc9d988eb
commit 7636f8cbab

View file

@ -26,7 +26,7 @@ function special() {
} }
## Informational (header) ## Informational (header)
function infoh() { function infoh() {
echo -e "${BUILDTOOL_COLOR_RESET}:: ${*}" echo -e "${BUILDTOOL_COLOR_RESET}[INFO] ${*}"
} }
## Informational (extension) ## Informational (extension)
function infoe() { function infoe() {
@ -34,7 +34,7 @@ function infoe() {
} }
## Warning (header) ## Warning (header)
function warnh() { function warnh() {
echo -e "${BUILDTOOL_COLOR_WARN}:: Warning: ${*}${BUILDTOOL_COLOR_RESET}" echo -e "${BUILDTOOL_COLOR_WARN}[WARN] ${*}${BUILDTOOL_COLOR_RESET}"
} }
## Warning (extension) ## Warning (extension)
function warne() { function warne() {
@ -42,7 +42,7 @@ function warne() {
} }
## Error (header) ## Error (header)
function errorh() { function errorh() {
echo -e "${BUILDTOOL_COLOR_ERROR}:: Error: ${*}${BUILDTOOL_COLOR_RESET}" echo -e "${BUILDTOOL_COLOR_ERROR}[ERR!] ${*}${BUILDTOOL_COLOR_RESET}"
} }
## Error (extension) ## Error (extension)
function errore() { function errore() {