Skip to content

Commit

Permalink
Update packages/lambda-tiler/src/index.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Wentao Kuang <wkuang@linz.govt.nz>
  • Loading branch information
blacha and Wentao-Kuang authored Oct 17, 2024
1 parent fa73053 commit 8a737ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lambda-tiler/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ function randomTrace(req: LambdaHttpRequest): void {
const rand = Math.random();
// 1% trace
if (rand < 0.01) req.log.level = 'trace';
// 5% debug
// 25% debug
else if (rand < 0.25) req.log.level = 'debug';
// everything else info
else req.log.level = 'info';
Expand Down

0 comments on commit 8a737ff

Please sign in to comment.