mirror of
https://codeberg.org/emersion/gamja.git
synced 2025-04-03 17:29:43 -04:00
Log outgoing messages
This commit is contained in:
parent
67ca372657
commit
021a5009d5
1 changed files with 2 additions and 1 deletions
|
@ -194,7 +194,7 @@ function connect() {
|
|||
|
||||
ws.onmessage = function(event) {
|
||||
var msg = parseMessage(event.data);
|
||||
console.log(msg);
|
||||
console.log("Received:", msg);
|
||||
|
||||
switch (msg.command) {
|
||||
case RPL_WELCOME:
|
||||
|
@ -273,6 +273,7 @@ function disconnect() {
|
|||
|
||||
function sendMessage(msg) {
|
||||
ws.send(formatMessage(msg));
|
||||
console.log("Sent:", msg);
|
||||
}
|
||||
|
||||
function executeCommand(s) {
|
||||
|
|
Loading…
Add table
Reference in a new issue