@hybridless/hybridless 0.0.84-alpha16 → 0.0.84-alpha17

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hybridless/hybridless",
3
- "version": "0.0.84-alpha16",
3
+ "version": "0.0.84-alpha17",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -8,6 +8,7 @@ process.on('SIGINT', function() {
8
8
  try {
9
9
  //Get inputs
10
10
  let input = {};
11
+ console.debug(process.argv);
11
12
  try { input = JSON.parse(process.argv[2]); }
12
13
  catch (e) { console.log('[Hybridless Runtime] - Error while decoding inputEvent parameter!', e); }
13
14
 
@@ -19,7 +20,7 @@ process.on('SIGINT', function() {
19
20
  const resp = await lambda.invoke();
20
21
 
21
22
  //Return
22
- console.log(resp);
23
+ console.debug(resp);
23
24
  if (resp.getCode && resp.getCode() == 200) process.exit(0);
24
25
  else process.exit(1);
25
26
  } catch (e) {