Skip to content

Commit

Permalink
Update packages/aws-cdk/lib/logging.ts
Browse files Browse the repository at this point in the history
Co-authored-by: Kaizen Conroy <[email protected]>
  • Loading branch information
HBobertz and kaizencc authored Jan 8, 2025
1 parent 65751a4 commit 7e45655
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/aws-cdk/lib/logging.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ let CORK_COUNTER = 0;
const logBuffer: IoMessage[] = [];

const levelPriority: Record<IoMessageLevel, number> = {
['error']: 0,
['warn']: 1,
['info']: 2,
['debug']: 3,
['trace']: 4,
error: 0,
warn: 1,
info: 2,
debug: 3,
trace: 4,
};

let currentIoMessageThreshold: IoMessageLevel = 'info';
Expand Down

0 comments on commit 7e45655

Please sign in to comment.