Skip to content

Commit ed3e6dd

Browse files
author
sw-yx
committed
fix console logs
1 parent 89f4a30 commit ed3e6dd

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/lambda/hello.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,7 @@ const obj = {
33
foo: 'bar'
44
};
55
export function handler(event, context, callback) {
6-
console.log('qsp', event.queryStringParameters);
7-
console.log('**********');
8-
console.log('mvsp', event.multiValueQueryStringParameters);
6+
console.log('queryStringParameters', event.queryStringParameters);
97
callback(null, {
108
statusCode: 200,
119
body: JSON.stringify({ msg: 'Hello, World!', ...obj })

0 commit comments

Comments
 (0)