refactor(win32): downgrade unknown virtual key message to debug level

This commit is contained in:
CJ van den Berg 2026-02-18 22:21:20 +01:00
parent 096c13db05
commit 7e8c4b9bc7
Signed by: neurocyte
GPG key ID: 8EB1E1BB660E3FB9

View file

@ -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| {