Skip to content

Commit

Permalink
warn instead of err log
Browse files Browse the repository at this point in the history
  • Loading branch information
ckuijjer committed Dec 25, 2023
1 parent 80c9543 commit a851e30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cloud/xRayPuppeteer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const xRayPuppeteer = ({
logger?.info('done retrieving content', { url: ctx.url })
done(null, ctx)
} catch (error) {
logger?.error('error retrieving', { url: ctx.url, error })
logger?.warn('error retrieving', { url: ctx.url, error })
return done(error, null)
}
}
Expand Down

0 comments on commit a851e30

Please sign in to comment.