Skip to content

Commit

Permalink
Improve log message when mapping keysyms
Browse files Browse the repository at this point in the history
It was a poor choice of words to call these keysyms "unknown" as they
are likely perfectly normal keysyms, they just cannot be found in the
currently loaded keyboard layout. This log message has confused users,
so let's get rid of the "unknown" part.

We already use the verb "add" heavily in the other log messages, so
let's keep that rather than switch to some for of "map".
  • Loading branch information
CendioOssman committed Aug 23, 2023
1 parent c1a54dd commit c5ad3d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unix/xserver/hw/vnc/vncInput.c
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ static void vncKeysymKeyboardEvent(KeySym keysym, int down)
return;
}

LOG_INFO("Added unknown keysym 0x%x to keycode %d",
LOG_INFO("Added keysym 0x%x to keycode %d",
keysym, keycode);

/*
Expand Down

0 comments on commit c5ad3d6

Please sign in to comment.