summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
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