fix: switch back to printf for log outputs
continuous-integration/drone/push Build is passing Details
continuous-integration/drone/tag Build is passing Details

This commit is contained in:
Robert Kaussow 2021-10-09 15:07:23 +02:00
parent dac9883008
commit f3c1423c12
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ log() {
message="$2"
timestamp=$(date +"%Y-%m-%d %H:%M:%S")
script_name="$(basename "$0")"
echo >&2 "${timestamp} [${level}] [$script_name] ${message}"
printf >&2 "%s [%s] [%s] %b" "${timestamp}" "${level}" "$script_name" "${message}"
}
# Log the given message at INFO level. All logs are written to stderr with a timestamp.