Closed mike1703 closed 6 days ago
Fixes #520 where no newlines were printed if CONFIG_LOG_COLORS=n as the newline was only printed if color.is_some(). Now the writeln!() call is at the end and is always called.
CONFIG_LOG_COLORS=n
color.is_some()
writeln!()
Thanks!
Fixes #520 where no newlines were printed if
CONFIG_LOG_COLORS=n
as the newline was only printed ifcolor.is_some()
. Now thewriteln!()
call is at the end and is always called.