Skip to content
This repository was archived by the owner on Dec 1, 2022. It is now read-only.

Commit 90d5c70

Browse files
committed
Remove debugger statements
1 parent 1676734 commit 90d5c70

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/index.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ export let handler = async (event, context) => {
1212
try {
1313
logger.info('*** LAMBDA START ***');
1414

15-
debugger;
1615
let db = new DynamoDB(config.connection.dynamoDB, config.connection.cloudWatch);
1716
let tables = await db.listTablesAsync();
1817
let capacityTasks = tables
@@ -24,7 +23,6 @@ export let handler = async (event, context) => {
2423
logger.info(JSON.stringify({tableDescription}));
2524

2625
// Log the monthlyEstimatedCost
27-
debugger;
2826
let totalTableProvisionedThroughput = db.getTotalTableProvisionedThroughput(tableDescription);
2927
let monthlyEstimatedCost = db.getMonthlyEstimatedTableCost(totalTableProvisionedThroughput);
3028
stats.counter('DynamoDB.monthlyEstimatedCost').inc(monthlyEstimatedCost);

0 commit comments

Comments
 (0)