chore(dtmm): Remove debug logs

This commit is contained in:
Lucas Schwiderski 2023-04-05 13:42:16 +02:00
parent 50a6a1c927
commit c7ec318e83
Signed by: lucas
GPG key ID: AA12679AAA6DF4D8

View file

@ -22,9 +22,6 @@ pub fn ansi_to_rich_text(input: &str) -> RichText {
for token in input.ansi_parse() {
match token {
Output::TextBlock(text) => {
dbg!(&state);
dbg!(&text);
let mut attr = builder.push(text);
attr.underline(state.underline);
attr.strikethrough(state.strikethrough);