Skip to content

Commit

Permalink
Fix ExceptionTokenRenderer to WriteLine after reset sequence
Browse files Browse the repository at this point in the history
  • Loading branch information
matkoch authored and khellang committed Oct 21, 2021
1 parent 7ecfd08 commit c3231ab
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ public override void Render(LogEvent logEvent, TextWriter output)
var style = nextLine.StartsWith(StackFrameLinePrefix) ? ConsoleThemeStyle.SecondaryText : ConsoleThemeStyle.Text;
var _ = 0;
using (_theme.Apply(output, style, ref _))
output.WriteLine(nextLine);
output.Write(nextLine);
output.WriteLine();
}
}
}
Expand Down

0 comments on commit c3231ab

Please sign in to comment.