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 87c4490 commit 49b7b77Copy full SHA for 49b7b77
lib/src/printers/pretty_printer.dart
@@ -24,6 +24,7 @@ class PrettyPrinter extends LogPrinter {
24
static const doubleDivider = '─';
25
static const singleDivider = '┄';
26
27
+ static final whiteColor = AnsiColor.fg(255);
28
static final levelColors = {
29
Level.verbose: AnsiColor.fg(AnsiColor.grey(0.5)),
30
Level.debug: AnsiColor.none(),
@@ -284,8 +285,7 @@ class PrettyPrinter extends LogPrinter {
284
285
for (var line in error.split('\n')) {
286
buffer.add(
287
color(verticalLineAtLevel) +
- errorColor.resetForeground +
288
- errorColor(line) +
+ errorColor(whiteColor(line)) +
289
errorColor.resetBackground,
290
);
291
}
0 commit comments