We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec9c7e8 commit 3285ab8Copy full SHA for 3285ab8
1 file changed
Linux/extraxtor.sh
@@ -84,21 +84,21 @@ log_warn() {
84
85
log_info() {
86
if [[ $QUIET != true ]]; then
87
- echo -e "${GREEN}[INFO]${RESET} $*"
+ echo -e "${GREEN}[INFO]${RESET} $*" >&2
88
fi
89
return 0
90
}
91
92
log_debug() {
93
if [[ $VERBOSE == true ]]; then
94
- echo -e "${BLUE}[DEBUG]${RESET} $*"
+ echo -e "${BLUE}[DEBUG]${RESET} $*" >&2
95
96
97
98
99
log_success() {
100
101
- echo -e "${GREEN}[SUCCESS]${RESET} $*"
+ echo -e "${GREEN}[SUCCESS]${RESET} $*" >&2
102
103
104
0 commit comments