Open draptik opened 1 month ago
Sounds good to me
I want to work on this ticket, can you assign this to me
@bhargava-raju please check the concerns on the existing PR here: https://github.com/stryker-mutator/stryker-net/pull/3047
If you feel you can address these issues, I will assign you
The default color of the console output is difficult to read when using a console with light background. A similar issue was raised in the past: https://github.com/stryker-mutator/stryker-net/issues/1602
Describe the solution you'd like The above ticket mentions that Stryker uses
Serilog.Sinks.Console
for generating the output. Serilog provides an easy way to change the color theme: https://github.com/serilog/serilog-sinks-console?tab=readme-ov-file#themesDescribe alternatives you've considered
AnsiConsoleTheme.Sixteen
. It's readable on dark and light backgroud (see screenshots below).This seems to be the relevant part in the current code, if I'm not mistaking: https://github.com/stryker-mutator/stryker-net/blob/567f028dc28fb180fd1e877a6e9992679da90935/src/Stryker.CLI/Stryker.CLI/Logging/ApplicationLogging.cs#L17
Additional context
What do you think?