We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 77109cc commit a635cbdCopy full SHA for a635cbd
lib/src/printers/pretty_printer.dart
@@ -25,6 +25,7 @@ class PrettyPrinter extends LogPrinter {
25
static const doubleDivider = '─';
26
static const singleDivider = '┄';
27
28
+ static final whiteColor = AnsiColor.fg(255);
29
static final levelColors = {
30
Level.verbose: AnsiColor.fg(AnsiColor.grey(0.5)),
31
Level.debug: AnsiColor.none(),
@@ -312,8 +313,7 @@ class PrettyPrinter extends LogPrinter {
312
313
for (var line in error.split('\n')) {
314
buffer.add(
315
color(verticalLineAtLevel) +
- errorColor.resetForeground +
316
- errorColor(line) +
+ errorColor(whiteColor(line)) +
317
errorColor.resetBackground,
318
);
319
}
0 commit comments