We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fd212c commit 12ea562Copy full SHA for 12ea562
docker-image/docker-entrypoint.sh
@@ -57,11 +57,11 @@ log() {
57
58
if [ "${type}" = "ok" ]; then
59
if [ "${debug}" -gt "0" ]; then
60
- printf "${clr_ok}[OK] %s${clr_rst}\n" "${message}"
+ printf "${clr_ok}[OK] %s${clr_rst}\n" "${message}" 1>&3
61
fi
62
elif [ "${type}" = "info" ]; then
63
64
- printf "${clr_info}[INFO] %s${clr_rst}\n" "${message}"
+ printf "${clr_info}[INFO] %s${clr_rst}\n" "${message}" 1>&3
65
66
elif [ "${type}" = "warn" ]; then
67
printf "${clr_warn}[WARN] %s${clr_rst}\n" "${message}" 1>&2 # stdout -> stderr
0 commit comments