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 a90aade commit 81b9a93Copy full SHA for 81b9a93
1 file changed
packages/core/src/integrations/consola.ts
@@ -219,9 +219,9 @@ export function createConsolaReporter(options: ConsolaReporterOptions = {}): Con
219
}
220
const message = messageParts.join(' ');
221
222
- // Build attributes: `rest` properties from logObj get a "consola" prefix; base attributes added below may override
223
const attributes: Record<string, unknown> = {};
224
+ // Build attributes: `rest` properties from logObj get a "consola" prefix; base attributes added below may override
225
for (const [key, value] of Object.entries(rest)) {
226
attributes[`consola.${key}`] = value;
227
0 commit comments