mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-21 08:49:06 +08:00
Sprinkle log folds around, including timing. Signed-off-by: Andrii Nakryiko <andriin@fb.com>
13 lines
252 B
Bash
13 lines
252 B
Bash
# $1 - start or end
|
|
# $2 - fold identifier, no spaces
|
|
# $3 - fold section description
|
|
travis_fold() {
|
|
local YELLOW='\033[1;33m'
|
|
local NOCOLOR='\033[0m'
|
|
echo travis_fold:$1:$2
|
|
if [ ! -z "${3:-}" ]; then
|
|
echo -e "${YELLOW}$3${NOCOLOR}"
|
|
fi
|
|
echo
|
|
}
|