Skip to content

Commit c4193c7

Browse files
committed
Use comma for logging, it improves the command line output
1 parent 14dc7f5 commit c4193c7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lambda-sandbox-run.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ var awsEmulator = {
33

44
succeed: function(response){
55
console.log('AWS Lambda Function was executed without issues.');
6-
console.log('Output: ' + response);
6+
console.log('Output: ', response);
77
},
88

99
fail: function(error){
10-
console.log('AWS Lambda Function failed, reason:' + error);
10+
console.log('AWS Lambda Function failed, reason:', error);
1111
}
1212

1313
};

0 commit comments

Comments
 (0)