Skip to content

Commit

Permalink
add: Enables to add parameters to the Log.e message
Browse files Browse the repository at this point in the history
  • Loading branch information
ujiro99 committed Jun 19, 2023
1 parent 9fe9382 commit 5ff845c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface ILog {
v: (msg: unknown) => void
d: (msg: unknown) => void
w: (msg: unknown) => void
e: (msg: unknown) => void
e: (message?: any, ...optionalParams: any[]) => void
}

const nop = () => {
Expand Down

0 comments on commit 5ff845c

Please sign in to comment.