mirror of
https://github.com/grafana/grafana.git
synced 2024-12-26 00:41:20 -06:00
Loki Docker Devenv: Fix undefined variable in error message (#62242)
fix(loki-docker-devenv): fix undefined variable in error message
This commit is contained in:
parent
16b816972b
commit
641a7182e3
@ -96,7 +96,7 @@ function escapeLogFmtKey(key) {
|
||||
|
||||
function escapeLogFmtValue(value) {
|
||||
if (logFmtProblemRe.test(value)) {
|
||||
throw new Error(`invalid logfmt-value: ${key}`)
|
||||
throw new Error(`invalid logfmt-value: ${value}`)
|
||||
}
|
||||
|
||||
// we must handle the space-character because we have values with spaces :-(
|
||||
|
Loading…
Reference in New Issue
Block a user