summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/main.go b/main.go
index 9cadcfb..d758477 100644
--- a/main.go
+++ b/main.go
@@ -66,7 +66,7 @@ func run(ctx context.Context) error {
case device := <-discoverer.NextDevice():
err := process(ctx, device, keyboard, mouse)
if err != nil {
- log.Printf("Process failed with error: %v", err)
+ panic(err)
}
}
}