diff options
author | Silas Bartha <[email protected]> | 2024-06-05 13:45:53 -0400 |
---|---|---|
committer | Silas Bartha <[email protected]> | 2024-06-05 13:45:53 -0400 |
commit | 04b60ff33eaa72b2eb75bc92b0c2a109cd2e9121 (patch) | |
tree | b9df377dc5cc490dd5b6de137a6ab06d11368c57 /src/input/systems.rs | |
parent | c30929cbd3302ddb869d25e7ea2bd151a4cdb91e (diff) |
Removed unnecessary info logsv0.2.2
Diffstat (limited to 'src/input/systems.rs')
-rw-r--r-- | src/input/systems.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/input/systems.rs b/src/input/systems.rs index 810c08e..366ccba 100644 --- a/src/input/systems.rs +++ b/src/input/systems.rs @@ -34,7 +34,6 @@ pub fn input_handling( let mut key_events = Vec::<KeyEvent>::new(); while let Some(event) = event_queue.pop() { if let Event::Key(event) = event { - info!("{:?}", event); key_events.push(event); } event_writer.send(TerminalInputEvent(event)); @@ -42,7 +41,6 @@ pub fn input_handling( key_events.sort_by(|&a, &b| a.kind.partial_cmp(&b.kind).unwrap_or(Ordering::Equal)); for event in key_events { - info!("{:?}", event); match event.kind { KeyEventKind::Press => { input.press(event.code); |