Skip to content

Commit 3285ab8

Browse files
committed
fix
1 parent ec9c7e8 commit 3285ab8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Linux/extraxtor.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,21 +84,21 @@ log_warn() {
8484

8585
log_info() {
8686
if [[ $QUIET != true ]]; then
87-
echo -e "${GREEN}[INFO]${RESET} $*"
87+
echo -e "${GREEN}[INFO]${RESET} $*" >&2
8888
fi
8989
return 0
9090
}
9191

9292
log_debug() {
9393
if [[ $VERBOSE == true ]]; then
94-
echo -e "${BLUE}[DEBUG]${RESET} $*"
94+
echo -e "${BLUE}[DEBUG]${RESET} $*" >&2
9595
fi
9696
return 0
9797
}
9898

9999
log_success() {
100100
if [[ $QUIET != true ]]; then
101-
echo -e "${GREEN}[SUCCESS]${RESET} $*"
101+
echo -e "${GREEN}[SUCCESS]${RESET} $*" >&2
102102
fi
103103
return 0
104104
}

0 commit comments

Comments
 (0)