Skip to content
Snippets Groups Projects
Commit f273f1b4 authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

refactor: logs on stderr

parent 28c8638e
Branches master
No related tags found
No related merge requests found
......@@ -128,15 +128,15 @@ stages:
set -e
function log_info() {
echo -e "[\\e[1;94mINFO\\e[0m] $*"
>&2 echo -e "[\\e[1;94mINFO\\e[0m] $*"
}
function log_warn() {
echo -e "[\\e[1;93mWARN\\e[0m] $*"
>&2 echo -e "[\\e[1;93mWARN\\e[0m] $*"
}
function log_error() {
echo -e "[\\e[1;91mERROR\\e[0m] $*"
>&2 echo -e "[\\e[1;91mERROR\\e[0m] $*"
}
function fail() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment