summary refs log tree commit diff
path: root/client.ts
diff options
context:
space:
mode:
authorWlodekM <[email protected]>2025-01-24 19:57:02 +0200
committerWlodekM <[email protected]>2025-01-24 19:57:02 +0200
commit39409714f0050f333942afa25ea3d07ef8334e1c (patch)
tree71270e6906e34d867053bba8f5347147654709d2 /client.ts
parent8280ee972e871b1b8b9d0cc560b037c6836dfd41 (diff)
fix logging of messages
Diffstat (limited to 'client.ts')
-rw-r--r--client.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client.ts b/client.ts
index 02397d0..caa89e7 100644
--- a/client.ts
+++ b/client.ts
@@ -30,7 +30,7 @@ interface Post {
 }
 
 maelink.on('message', (e) => {
-    screen.logs.push("INC: " + e)
+    screen.logs.push("INC: " + JSON.stringify(e))
 })
 
 maelink.on("post", (post: Post) => {