Skip to content

Commit

Permalink
docs: wrong log call in onError method (#1681)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Tymchuk committed Apr 26, 2022
1 parent 1a73ff4 commit 12d9b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = (app) => {
});

app.onError(async (error) => {
context.log.error(error);
app.log.error(error);
});
};
```
Expand Down

0 comments on commit 12d9b05

Please sign in to comment.