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 1775246 commit 75774d9Copy full SHA for 75774d9
1 file changed
packages/core/src/integrations/consola.ts
@@ -226,9 +226,9 @@ export function createConsolaReporter(options: ConsolaReporterOptions = {}): Con
226
}
227
const message = messageParts.join(' ');
228
229
- // Build attributes: `rest` properties from logObj get a "consola" prefix; base attributes added below may override
230
const attributes: Record<string, unknown> = {};
231
+ // Build attributes: `rest` properties from logObj get a "consola" prefix; base attributes added below may override
232
for (const [key, value] of Object.entries(rest)) {
233
attributes[`consola.${key}`] = value;
234
0 commit comments