aboutsummaryrefslogtreecommitdiffstats
path: root/util/log.sh
blob: c19f56310724bdd7225c5f584ff1e98a3a172970 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash
##############################################################################
# Copyright (c) 2016-2017 HUAWEI TECHNOLOGIES CO.,LTD and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################
function log_info() {
    echo -e "\033[32m$*\033[0m"
}

function log_warn() {
    echo -e "\033[33m$*\033[0m"
}

function log_error() {
    echo -e "\033[31m$*\033[0m"
}

function log_progress() {
    echo -en "\033[33m$*\r\033[0m"
}