mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-05 04:06:08 -05:00
csi/vt: don't bad client data as errors
This gets rid of spam when cat:ing binary data.
This commit is contained in:
parent
66f941d00a
commit
9551be492c
2 changed files with 2 additions and 2 deletions
2
csi.c
2
csi.c
|
|
@ -775,7 +775,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
|
|||
}
|
||||
|
||||
default:
|
||||
LOG_WARN("ignoring %s", csi_as_string(term, final));
|
||||
LOG_DBG("ignoring %s", csi_as_string(term, final));
|
||||
break;
|
||||
}
|
||||
break;
|
||||
|
|
|
|||
2
vt.c
2
vt.c
|
|
@ -953,7 +953,7 @@ action(struct terminal *term, enum action _action, uint8_t c)
|
|||
else if (term->vt.private[1] == 0)
|
||||
term->vt.private[1] = c;
|
||||
else
|
||||
LOG_ERR("only two private/intermediate characters supported");
|
||||
LOG_DBG("only two private/intermediate characters supported");
|
||||
break;
|
||||
|
||||
case ACTION_ESC_DISPATCH:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue