csi/vt: don't bad client data as errors

This gets rid of spam when cat:ing binary data.
This commit is contained in:
Daniel Eklöf 2019-11-30 00:12:30 +01:00
parent 66f941d00a
commit 9551be492c
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F
2 changed files with 2 additions and 2 deletions

2
csi.c
View file

@ -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
View file

@ -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: