# HG changeset patch # User Josef 'Jeff' Sipek # Date 1737662697 18000 # Thu Jan 23 15:04:57 2025 -0500 # Node ID 064ce7cceef649c4cdeae469dbfaab1a64e16b50 # Parent 14c53c88eb797f8e61a8abb2829782b1db8e97d1 contest: log ncurses start & key press trace messages Signed-off-by: Josef 'Jeff' Sipek diff --git a/hlog/contest/ui.c b/hlog/contest/ui.c --- a/hlog/contest/ui.c +++ b/hlog/contest/ui.c @@ -742,6 +742,8 @@ return ret; } + msg_trace("starting ncurses contest ui"); + msg_start(); initscr(); @@ -775,6 +777,11 @@ set_rig_info(); /* do this here so lua calls below can use it */ if (ch != ERR) { + if (isprint(ch)) + msg_trace("xform char '%c' (%#x)", ch, ch); + else + msg_trace("xform char %d (%#x)", ch, ch); + status_display_error(""); /* clear the error string */ ui_work_dispatch(lua, ch, &contact);