Skip to content

Commit ea6ce59

Browse files
author
pooya parsa
committed
feat: improve basic logs
1 parent b64f337 commit ea6ce59

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/reporters/basic.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,11 +50,11 @@ export default class BasicReporter {
5050
formatLogObj (logObj) {
5151
const message = this.formatArgs(logObj.args)
5252

53-
const type = logObj.type.toUpperCase()
53+
const type = logObj.type.toLowerCase()
5454

5555
return this.filterAndJoin([
56-
bracket(logObj.tag),
5756
bracket(type),
57+
bracket(logObj.tag),
5858
message
5959
])
6060
}

0 commit comments

Comments
 (0)