fix release bind message

This commit is contained in:
Ferdinand Schober
2024-06-30 14:41:16 +02:00
parent 3528ef4fae
commit 9cbe1ed8d8

View File

@@ -68,7 +68,7 @@ fn run_service(config: &Config) -> Result<()> {
// run async event loop
runtime.block_on(LocalSet::new().run_until(async {
// run main loop
log::info!("Press Ctrl+Alt+Shift+Super to release the mouse");
log::info!("Press {:?} to release the mouse", config.release_bind);
let server = Server::new(config);
server.run(config.capture_backend).await?;