mirror of
https://github.com/m1k1o/neko.git
synced 2025-08-03 16:59:12 +02:00
fix logging.
This commit is contained in:
parent
3227978725
commit
40d820a3e0
1 changed files with 2 additions and 3 deletions
|
@ -3,7 +3,6 @@ package webrtc
|
|||
import (
|
||||
"bytes"
|
||||
"encoding/binary"
|
||||
"strconv"
|
||||
|
||||
"github.com/pion/webrtc/v3"
|
||||
)
|
||||
|
@ -71,8 +70,8 @@ func (manager *WebRTCManagerCtx) handle(msg webrtc.DataChannelMessage) error {
|
|||
|
||||
manager.logger.
|
||||
Debug().
|
||||
Str("x", strconv.Itoa(int(payload.X))).
|
||||
Str("y", strconv.Itoa(int(payload.Y))).
|
||||
Int16("x", payload.X).
|
||||
Int16("y", payload.Y).
|
||||
Msg("scroll")
|
||||
|
||||
manager.desktop.Scroll(int(payload.X), int(payload.Y))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue