Skip to content

Commit

Permalink
Merge pull request #36 from mterm-io/feature/logger
Browse files Browse the repository at this point in the history
fix: logger return type
  • Loading branch information
daretodave authored Apr 27, 2024
2 parents 40e6eb8 + a9bb082 commit 0ce33a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/logger.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export const log = (...message: string[]) => {
export const log = (...message: string[]): void => {
console.log(...message)
}

0 comments on commit 0ce33a5

Please sign in to comment.