Skip to content

Commit

Permalink
Merge pull request #39076 from margelo/chore/hmmm-for-onyx
Browse files Browse the repository at this point in the history
feat: add `hmmm` log level to onyx
  • Loading branch information
marcaaron authored May 1, 2024
2 parents 84c4535 + 8f08c43 commit 33a1522
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 33a1522

Please sign in to comment.