csi: change flash log message from warning to debug

This commit is contained in:
Daniel Eklöf 2019-07-21 19:17:10 +02:00
parent 0dd8951cb3
commit 07aad4a534
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

2
csi.c
View file

@ -578,7 +578,7 @@ csi_dispatch(struct terminal *term, uint8_t final)
case 1001: {
/* Our own private - flash */
unsigned duration_ms = vt_param_get(term, 1, 100);
LOG_WARN("FLASH for %ums", duration_ms);
LOG_DBG("FLASH for %ums", duration_ms);
struct itimerspec alarm = {
.it_value = {.tv_sec = 0, .tv_nsec = duration_ms * 1000000},