[triggers/usb] fix print statement

This commit is contained in:
2023-10-28 12:37:37 +02:00
parent 2b33525ea1
commit 8e8088ab39

View File

@@ -35,7 +35,7 @@ func (t UsbDisconnect) Listen() {
time.Sleep(1 * time.Second)
}
fmt.Sprintln("Device %s detected.", t.DeviceName)
fmt.Printf("Device %s detected.\n", t.DeviceName)
fmt.Println("UsbDisconnect Trigger is Armed")
}