Add more logging to cgui
This commit is contained in:
parent
b149883e23
commit
7f4a9d8158
|
@ -85,14 +85,14 @@ func readFromServer(conn net.Conn, ws *websocket.Conn) {
|
||||||
if msg == nil {
|
if msg == nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
log.Printf("client: received message from server: %v", *msg)
|
log.Printf("client: readServer: received message from server: %v", *msg)
|
||||||
switch msg.ID {
|
switch msg.ID {
|
||||||
case com.ID_SERVER_APPROVE_CLIENT_NICKNAME:
|
case com.ID_SERVER_APPROVE_CLIENT_NICKNAME:
|
||||||
newID := binary.BigEndian.Uint16(msg.Data)
|
newID := binary.BigEndian.Uint16(msg.Data)
|
||||||
msg.FromID = newID
|
msg.FromID = newID
|
||||||
msg.Data = []byte{}
|
msg.Data = []byte{}
|
||||||
}
|
}
|
||||||
log.Printf("client: sending message to websocket: %v", *msg)
|
log.Printf("client: readServer: sending message to websocket: %v", *msg)
|
||||||
ws.WriteJSON(*msg)
|
ws.WriteJSON(*msg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -106,12 +106,13 @@ func readFromWebSocket(conn net.Conn, ws *websocket.Conn) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
msg.Version = com.V1
|
msg.Version = com.V1
|
||||||
log.Printf("client: received message from Electron: %v", msg)
|
log.Printf("client: readWS: received message from Electron: %v", msg)
|
||||||
encodedMsg, err := msg.Bytes()
|
encodedMsg, err := msg.Bytes()
|
||||||
if err != nil {
|
if err != nil {
|
||||||
log.Printf("Encoding error: %s", err)
|
log.Printf("Encoding error: %s", err)
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
log.Printf("client: readWS: sending data to server: %v", encodedMsg)
|
||||||
conn.Write(encodedMsg)
|
conn.Write(encodedMsg)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user