Skip to content

Commit

Permalink
feat: log kanata IO mechanism in Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jtroo committed Feb 27, 2023
1 parent ad8b6f6 commit f7adb3e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,10 @@ fn cli_init() -> Result<ValidatedArgs> {
)])
.expect("logger can init");
log::info!("kanata v{} starting", env!("CARGO_PKG_VERSION"));
#[cfg(all(not(feature = "interception_driver"), target_os = "windows"))]
log::info!("using LLHOOK+SendInput for keyboard IO");
#[cfg(all(feature = "interception_driver", target_os = "windows"))]
log::info!("using the Interception driver for keyboard IO");

if !cfg_paths[0].exists() {
bail!(
Expand Down

0 comments on commit f7adb3e

Please sign in to comment.