This commit is contained in:
Fancy code 2024-05-28 19:27:31 +08:00
parent c3e5571e37
commit 68d1dd58ca

View File

@ -106,6 +106,6 @@ void KeyManager::KeyEventHappened(const std::string &keyName, const VirtualKeyEv
LogError("monitor is nullptr.\n");
return;
}
LogInfo("KeyEventHappened: key = %s, event = %d, time ms = %u\n", keyName.c_str(), event, timeMs);
// LogInfo("KeyEventHappened: key = %s, event = %d, time ms = %u\n", keyName.c_str(), event, timeMs);
monitor->KeyEventReport(keyName, static_cast<VirtualKeyEvent>(event), timeMs);
}