0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-01-23 06:58:58 -05:00

📎 Remove unnecesary logging on ws io exception

This commit is contained in:
Andrey Antukh 2022-09-27 07:27:35 +02:00
parent a868840132
commit 4909d6574e

View file

@ -101,7 +101,8 @@
(fn [_ error]
(a/close! close-ch)
(when-not (or (instance? java.nio.channels.ClosedChannelException error)
(instance? java.net.SocketException error))
(instance? java.net.SocketException error)
(instance? java.io.IOException error))
(l/error :hint (ex-message error) :cause error)))
on-ws-message