You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
265 B
Bash

# log about function encapsulation
# Longwei Lai
###################################################################
function log_info()
{
echo "$@"
}
function log_warn()
{
echo -e "\e[1;33m$@\e[0m"
}
function log_err()
{
echo -e "\e[1;31m$@\e[0m"
}