csi: scroll region changes are now logged as debug again, rather than info

This commit is contained in:
Daniel Eklöf 2019-07-03 14:24:46 +02:00
parent da305abdd8
commit 2fad8138e1
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

6
csi.c
View file

@ -483,9 +483,9 @@ csi_dispatch(struct terminal *term, uint8_t final)
term_cursor_to(term, (start - 1) * term->cols, 0);
LOG_INFO("scroll region: %d-%d",
term->scroll_region.start,
term->scroll_region.end);
LOG_DBG("scroll region: %d-%d",
term->scroll_region.start,
term->scroll_region.end);
break;
}