Skip to content

Commit

Permalink
add log warning
Browse files Browse the repository at this point in the history
  • Loading branch information
Eoksni committed Nov 19, 2019
1 parent e998f14 commit 6915287
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions frontend/src/services/logger.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
export function error(...args) {
return console.error(...args);
}

export function warn(...args) {
return console.warn(...args);
}

0 comments on commit 6915287

Please sign in to comment.