Skip to content

Commit

Permalink
fix: debug to info log
Browse files Browse the repository at this point in the history
  • Loading branch information
maxakuru committed Jun 12, 2024
1 parent 45d64d1 commit 1be702c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bundler/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ async function doBundling(ctx) {
// list files in log bucket
performance.mark('start:get-logs');
const { objects, isTruncated } = await logBucket.list('raw/', { limit: batchLimit });
log.debug(`processing ${objects.length} RUM log files (${isTruncated ? 'more to process' : 'last batch'})`);
log.info(`processing ${objects.length} RUM log files (${isTruncated ? 'more to process' : 'last batch'})`);

const files = await processQueue(
objects.filter((o) => !!o.contentType),
Expand Down

0 comments on commit 1be702c

Please sign in to comment.