necouchman commented on code in PR #602:
URL: https://github.com/apache/guacamole-server/pull/602#discussion_r2279936083
##########
src/terminal/display.c:
##########
@@ -486,6 +486,10 @@ void
guac_terminal_display_set_columns(guac_terminal_display* display, int row,
start_column = guac_terminal_fit_to_range(start_column, 0, display->width
- 1);
end_column = guac_terminal_fit_to_range(end_column, 0, display->width
- 1);
+ if (start_column > end_column) {
+ guac_client_log(display->client, GUAC_LOG_DEBUG, "display_set_columns:
Adjusted range is empty [%d,%d], returning.", start_column, end_column);
Review Comment:
This seems like it should be in `GUAC_LOG_TRACE` rather than `DEBUG`?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]