Skip to content

Commit bd68533

Browse files
committed
test
1 parent 1eef16f commit bd68533

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

communication/u2fhid/u2fhid.go

+2
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ package u2fhid
1818
import (
1919
"bytes"
2020
"encoding/binary"
21+
"fmt"
2122
"io"
2223
"sync"
2324

@@ -140,6 +141,7 @@ func (communication *Communication) sendFrame(msg string) error {
140141
for out.Len() > 0 {
141142
x := out.Bytes()
142143
n, err := communication.device.Write(x)
144+
fmt.Println("LOL", n)
143145
if err != nil {
144146
return errp.WithMessage(errp.WithStack(err), "Failed to send message")
145147
}

0 commit comments

Comments
 (0)