diff options
author | WlodekM <[email protected]> | 2025-01-24 19:57:02 +0200 |
---|---|---|
committer | WlodekM <[email protected]> | 2025-01-24 19:57:02 +0200 |
commit | 39409714f0050f333942afa25ea3d07ef8334e1c (patch) | |
tree | 71270e6906e34d867053bba8f5347147654709d2 /client.ts | |
parent | 8280ee972e871b1b8b9d0cc560b037c6836dfd41 (diff) |
fix logging of messages
Diffstat (limited to 'client.ts')
-rw-r--r-- | client.ts | 2 |
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) => { |