Skip to content

Commit

Permalink
fix: debug message
Browse files Browse the repository at this point in the history
  • Loading branch information
Johannes Bensmann committed Oct 13, 2024
1 parent 9855fa7 commit 00795ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion virtual/virtual_mouse.go
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ func (m *Mouse) ButtonPress(triggeredByKey uint16, button config.MouseButton) {
var err error
m.buttonsByKeys[triggeredByKey] = button
m.isButtonPressed[button] = true
log.Debug("Mouse: pressing %v", button)
log.Debugf("Mouse: pressing %v", button)
if button == config.ButtonLeft {
err = m.uinputMouse.LeftPress()
} else if button == config.ButtonMiddle {
Expand Down

0 comments on commit 00795ce

Please sign in to comment.