Skip to content

Commit

Permalink
feat: improve basic logs
Browse files Browse the repository at this point in the history
  • Loading branch information
pooya parsa committed May 26, 2019
1 parent b64f337 commit ea6ce59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/reporters/basic.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ export default class BasicReporter {
formatLogObj (logObj) {
const message = this.formatArgs(logObj.args)

const type = logObj.type.toUpperCase()
const type = logObj.type.toLowerCase()

return this.filterAndJoin([
bracket(logObj.tag),
bracket(type),
bracket(logObj.tag),
message
])
}
Expand Down

0 comments on commit ea6ce59

Please sign in to comment.