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 bda6d67 commit 65bf460Copy full SHA for 65bf460
lib/logger.js
@@ -166,7 +166,7 @@ class JSONConsumer extends LogConsumer {
166
167
// Add consumer fields
168
const consumerFields = this.#fields;
169
- for (const key in consumerFields) {
+ for (const key of ObjectKeys(consumerFields)) {
170
const value = consumerFields[key];
171
json += ',"' + key + '":';
172
json += typeof value === 'string' ?
0 commit comments