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 0315a2b commit c07a7b4Copy full SHA for c07a7b4
workers/sentry/src/index.ts
@@ -128,7 +128,7 @@ export default class SentryEventWorker extends Worker {
128
* Skip non-event items
129
*/
130
if (itemHeader.type !== 'event') {
131
- this.logger.verbose(`Skipping non-event item of type: ${itemHeader.type}`);
+ this.logger.info(`Skipping non-event item of type: ${itemHeader.type}`);
132
return 'skipped';
133
}
134
const payloadHasSDK = typeof itemPayload === 'object' && 'sdk' in itemPayload;
0 commit comments