Skip to content

Commit

Permalink
feat: add hmmm log level to onyx
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillzyusko committed Apr 30, 2024
1 parent 6a37cd8 commit 8f08c43
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Expensify.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ Onyx.registerLogger(({level, message}) => {
if (level === 'alert') {
Log.alert(message);
console.error(message);
} else if (level === 'hmmm') {
Log.hmmm(message);
} else {
Log.info(message);
}
Expand Down

0 comments on commit 8f08c43

Please sign in to comment.