GUACAMOLE-278: Log unhandled/invalid sequences at DEBUG level.

This commit is contained in:
Michael Jumper 2017-04-23 12:58:32 -07:00
parent 87fba523ee
commit 19f7424c62

View File

@ -367,7 +367,8 @@ int guac_terminal_escape(guac_terminal* term, unsigned char c) {
break; break;
default: default:
guac_client_log(term->client, GUAC_LOG_INFO, "Unhandled ESC sequence: %c", c); guac_client_log(term->client, GUAC_LOG_DEBUG,
"Unhandled ESC sequence: %c", c);
term->char_handler = guac_terminal_echo; term->char_handler = guac_terminal_echo;
} }
@ -1011,11 +1012,11 @@ int guac_terminal_csi(guac_terminal* term, unsigned char c) {
default: default:
if (c != ';') { if (c != ';') {
guac_client_log(term->client, GUAC_LOG_INFO, guac_client_log(term->client, GUAC_LOG_DEBUG,
"Unhandled CSI sequence: %c", c); "Unhandled CSI sequence: %c", c);
for (i=0; i<argc; i++) for (i=0; i<argc; i++)
guac_client_log(term->client, GUAC_LOG_INFO, guac_client_log(term->client, GUAC_LOG_DEBUG,
" -> argv[%i] = %i", i, argv[i]); " -> argv[%i] = %i", i, argv[i]);
} }
@ -1182,7 +1183,8 @@ int guac_terminal_osc(guac_terminal* term, unsigned char c) {
/* Stop on unrecognized character */ /* Stop on unrecognized character */
else { else {
guac_client_log(term->client, GUAC_LOG_INFO, "Unexpected character in OSC: 0x%X", c); guac_client_log(term->client, GUAC_LOG_DEBUG,
"Unexpected character in OSC: 0x%X", c);
term->char_handler = guac_terminal_echo; term->char_handler = guac_terminal_echo;
} }