diff options
author | bricelalu <[email protected]> | 2021-04-03 16:32:07 +0200 |
---|---|---|
committer | bricelalu <[email protected]> | 2021-04-03 16:38:23 +0200 |
commit | 8bf90c152ddc5cf5eee7e6b59a12424467dd53eb (patch) | |
tree | b2735cdd8739f2d64ebd949928714385163ef52b | |
parent | b08566aa120d1500fb68dc032c39a87816b0eafb (diff) |
Update CHANGELOG.md: renaming logger's 'clean' mode to 'raw' mode
Signed-off-by: bricelalu <[email protected]>
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | tests/plugins/logger/plugin.go | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d0ae14d6..b32ce421 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,7 +14,7 @@ v2.0.3 (29.03.2021) ## 🩹 Fixes: - 🐛 Fix: slow last response when reached `max_jobs` limit. -- 📜 Add a new `clean` mode for the `logger` plugin to keep the stderr log message of the worker unmodified. +- 📜 Add a new `raw` mode for the `logger` plugin to keep the stderr log message of the worker unmodified. v2.0.2 (06.04.2021) ------------------- diff --git a/tests/plugins/logger/plugin.go b/tests/plugins/logger/plugin.go index 38da7266..aa62f2b3 100644 --- a/tests/plugins/logger/plugin.go +++ b/tests/plugins/logger/plugin.go @@ -32,8 +32,8 @@ func (p1 *Plugin) Serve() chan error { p1.log.Warn("error", "test") // test the `raw` mode - messageJson := []byte(`{"field": "value"}`) - p1.log.Debug(strings.TrimRight(string(messageJson), " \n\t")) + messageJSON := []byte(`{"field": "value"}`) + p1.log.Debug(strings.TrimRight(string(messageJSON), " \n\t")) return errCh } |