diff options
Diffstat (limited to 'ci/log.sh')
-rwxr-xr-x | ci/log.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/ci/log.sh b/ci/log.sh new file mode 100755 index 00000000..f54fdca5 --- /dev/null +++ b/ci/log.sh @@ -0,0 +1,22 @@ +#!/bin/bash +reset=`tput sgr0` +red=`tput setaf 1` +green=`tput setaf 2` +yellow=`tput setaf 3` + +function log_info() { + echo -e "${green}$*${reset}" +} + +function log_warn() { + echo -e "${yellow}$*${reset}" +} + +function log_error() { + echo -e "${red}$*${reset}" +} + +function log_progress() { + echo -en "${yellow}$*\r${reset}" +} + |