We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 214b619 commit 429bd91Copy full SHA for 429bd91
2 files changed
src/util/debug.js
@@ -13,7 +13,7 @@ export default function debug() {
13
});
14
}
15
16
-export function init(event, context) {
+export function init(event) {
17
logs = [];
18
19
// Log API event
src/util/handler.js
@@ -5,7 +5,7 @@ export default function handler(lambda) {
5
let body, statusCode;
6
7
// Start debugger
8
- debug.init(event, context);
+ debug.init(event);
9
10
try {
11
// Run the Lambda
0 commit comments