summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPaul Buetow <pbuetow@mimecast.com>2022-02-04 21:43:52 +0000
committerPaul Buetow <pbuetow@mimecast.com>2022-02-04 21:43:52 +0000
commit9685c5908631577548693a57a6e61cc7717556ce (patch)
tree80a1d59df9957e53e5e8a3ec8c888fb1d8c37461 /doc
parent1db3b5dc1219e34e0e1c612e6646327701c40274 (diff)
parent73da706412607ee2e4214dd36349cf333972ae0b (diff)
merge kv sensitivity
Diffstat (limited to 'doc')
-rw-r--r--doc/logformats.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/logformats.md b/doc/logformats.md
index dd49c7c..c3f0c63 100644
--- a/doc/logformats.md
+++ b/doc/logformats.md
@@ -47,7 +47,7 @@ func (p *Parser) MakeFieldsGENERIGKV(maprLine string) (map[string]string, error)
// dlog.Common.Debug("Unable to parse key-value token, ignoring it", kv)
continue
}
- fields[strings.ToLower(keyAndValue[0])] = keyAndValue[1]
+ fields[keyAndValue[0]] = keyAndValue[1]
}
return fields, nil