We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c4db2c commit 9eb5957Copy full SHA for 9eb5957
modules/runners/lambdas/runners/src/lambda.ts
@@ -3,7 +3,7 @@ import { scaleDown } from './scale-runners/scale-down';
3
import { SQSEvent } from 'aws-lambda';
4
5
module.exports.scaleUp = async (event: SQSEvent, context: any, callback: any) => {
6
- console.log(event);
+ console.dir(event, { depth: 5 });
7
try {
8
for (const e of event.Records) {
9
await scaleUp(e.eventSource, JSON.parse(e.body));
0 commit comments