refactor(win32): downgrade unknown virtual key message to debug level
This commit is contained in:
parent
096c13db05
commit
7e8c4b9bc7
1 changed files with 1 additions and 1 deletions
|
|
@ -854,7 +854,7 @@ fn sendKey(
|
||||||
}
|
}
|
||||||
|
|
||||||
if (unicode_result == 0) {
|
if (unicode_result == 0) {
|
||||||
std.log.warn("unknown virtual key {f} (0x{x})", .{ winkey, winkey.vk });
|
std.log.debug("unknown virtual key {f} (0x{x})", .{ winkey, winkey.vk });
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
for (char_buf[0..@intCast(unicode_result)]) |codepoint| {
|
for (char_buf[0..@intCast(unicode_result)]) |codepoint| {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue