Skip to content

Commit

Permalink
Make additional small changes in revert
Browse files Browse the repository at this point in the history
  • Loading branch information
DotGav committed May 6, 2020
1 parent 513f950 commit 5531ee8
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ sls-dev-tools is currently being actively maintained. If you find a problem with

[A note on AWS API calls and pricing](#a-note-on-aws-api-calls-and-pricing)\
[Libs](#libs)\
[Contributors ✨](#contributors-)
[Contributors ✨](#contributors-)

## Installation

Expand Down
1 change: 0 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,6 @@ class Main {

async render() {
setInterval(() => {
console.log(process.memoryUsage());
this.map.updateMap();
this.updateResourcesInformation();
this.updateGraphs();
Expand Down
2 changes: 1 addition & 1 deletion src/services/invoke.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ function invokeLambda(awsLambdaApi, functionName, payload) {
Payload: payload,
};
awsLambdaApi.invoke(params, (err, data) => {
if (err) console.log(err, err.stack);
if (err) console.error(err, err.stack);
// an error occurred
else console.log(data); // successful response
});
Expand Down

0 comments on commit 5531ee8

Please sign in to comment.