Skip to content

Commit

Permalink
fix: add error logger to log utility
Browse files Browse the repository at this point in the history
  • Loading branch information
daretodave committed Apr 27, 2024
1 parent e6d53c0 commit 7c116d0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/main/logger.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
export const error = (...message: string[]): void => {
console.error(...message)
}
export const log = (...message: string[]): void => {
console.log(...message)
}

0 comments on commit 7c116d0

Please sign in to comment.