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 fe0f961 commit 2de0c23Copy full SHA for 2de0c23
lib/log.sh
@@ -111,9 +111,9 @@ function bashio::log.log() {
111
timestamp=$(date +"${__BASHIO_LOG_TIMESTAMP}")
112
113
output="${__BASHIO_LOG_FORMAT}"
114
- output="${output//\{TIMESTAMP\}/${timestamp}}"
115
- output="${output//\{MESSAGE\}/${message}}"
116
- output="${output//\{LEVEL\}/${__BASHIO_LOG_LEVELS[$level]}}"
+ output="${output//\{TIMESTAMP\}/"${timestamp}"}"
+ output="${output//\{MESSAGE\}/"${message}"}"
+ output="${output//\{LEVEL\}/"${__BASHIO_LOG_LEVELS[$level]}"}"
117
118
echo -e "${output}" >&2
119
0 commit comments