aboutsummaryrefslogtreecommitdiff
path: root/part4/blog/utils/logger.js
blob: f4b4c789adbf5ab2ca69a9059c56a2d4e59242c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
const info = (...params) => {
  console.log('info: ', ...params)
}

const error = (...params) => {
  console.log('error: ', ...params)
}

module.exports = {
  info, error
}