Skip to content

Commit 68c3bae

Browse files
author
pooya parsa
committedMay 25, 2019
feat: hide time from basic logger as it is commonly used in CI environments
1 parent 00a375f commit 68c3bae

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed
 

Diff for: ‎src/reporters/basic.js

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

53-
const date = this.formatDate(logObj.date)
5453
const type = logObj.type.toUpperCase()
5554

5655
return this.filterAndJoin([
57-
bracket(date),
5856
bracket(logObj.tag),
5957
bracket(type),
6058
message

0 commit comments

Comments
 (0)
Please sign in to comment.