Skip to content

Commit a75df96

Browse files
committedApr 5, 2017
Avoid XXX for these style names, none seems more descriptive. This should have no functional effect.
1 parent 58846af commit a75df96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎bin/bunyan

+3-3
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ function emitRecord(rec, line, opts, stylize) {
795795
};
796796
time = moTime.format(tzFormat);
797797
}
798-
time = stylize(time, 'XXX');
798+
time = stylize(time, 'none');
799799
delete rec.time;
800800

801801
var nameStr = rec.name;
@@ -1040,9 +1040,9 @@ function emitRecord(rec, line, opts, stylize) {
10401040
}
10411041

10421042
extras = stylize(
1043-
(extras.length ? ' (' + extras.join(', ') + ')' : ''), 'XXX');
1043+
(extras.length ? ' (' + extras.join(', ') + ')' : ''), 'none');
10441044
details = stylize(
1045-
(details.length ? details.join('\n --\n') + '\n' : ''), 'XXX');
1045+
(details.length ? details.join('\n --\n') + '\n' : ''), 'none');
10461046
if (!short)
10471047
emit(format('%s %s: %s on %s%s:%s%s\n%s',
10481048
time,

0 commit comments

Comments
 (0)
Please sign in to comment.