Skip to content

Commit 5e6c3f1

Browse files
committed
debug(context) #128
1 parent ba4c009 commit 5e6c3f1

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,5 @@ node_modules
2929
.vagrant
3030
crawl.js
3131
.DS_Store
32+
33+
.env

lambda/index.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
require("env2")(".env");
2-
const debug = require("./lib/debug.js");
2+
const debug = require("./debug.js");
33

44
exports.handler = function handler (event, context, callback) {
55
debug(event);
6+
debug(context);
67
return callback(null, event);
78
}

0 commit comments

Comments
 (0)