osc: change info logging to debug logging when changing the cursor color

This commit is contained in:
Daniel Eklöf 2020-10-20 21:03:51 +02:00
parent 0d319f8793
commit b507d3a55e
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

2
osc.c
View file

@ -656,7 +656,7 @@ osc_dispatch(struct terminal *term)
if (string[0] == '#' ? !parse_legacy_color(string, &color) : !parse_rgb(string, &color))
break;
LOG_INFO("change cursor color to %06x", color);
LOG_DBG("change cursor color to %06x", color);
if (color == 0)
term->cursor_color.cursor = 0; /* Invert fg/bg */