We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aeaac20 commit 263c771Copy full SHA for 263c771
1 file changed
packages/notificationsReportingLambda/src/notificationsReportingLambda.ts
@@ -89,10 +89,12 @@ export const lambdaHandler = buildHandler(getDefaultRepository)
89
export const handler = middy(lambdaHandler)
90
.use(injectLambdaContext(logger, {clearState: true}))
91
.use(httpHeaderNormalizer())
92
- .use(inputOutputLogger({
93
- logger: request => {
94
- logger.info("notificationsReporting invocation", {hasBody: Boolean(request.event.body)})
95
- }
96
- }))
+ .use(
+ inputOutputLogger({
+ logger: (request) => {
+ logger.info(request)
+ }
97
+ })
98
+ )
99
100
export {normalizeFilters, buildResponse}
0 commit comments