Skip to content

Commit 903b556

Browse files
chore: add str to log
1 parent 600c2b3 commit 903b556

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/terminal/Server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ class Server {
3535

3636
// listen to keystrokes from client
3737
socket.on("data", (data) => {
38-
this.log.debug("received", data.toString());
38+
this.log.debug("received", data.toString(), data[0]);
3939
device.adapter.sendData(data);
4040
// make sure device data is sent to the last active terminal
4141
device.__onTerminalDataExclusive = (data) => socket.write(data);

0 commit comments

Comments
 (0)