mirror of
https://github.com/penpot/penpot.git
synced 2025-01-23 15:09:10 -05:00
📎 Remove unnecesary logging on ws io exception
This commit is contained in:
parent
a868840132
commit
4909d6574e
1 changed files with 2 additions and 1 deletions
|
@ -101,7 +101,8 @@
|
||||||
(fn [_ error]
|
(fn [_ error]
|
||||||
(a/close! close-ch)
|
(a/close! close-ch)
|
||||||
(when-not (or (instance? java.nio.channels.ClosedChannelException error)
|
(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)))
|
(l/error :hint (ex-message error) :cause error)))
|
||||||
|
|
||||||
on-ws-message
|
on-ws-message
|
||||||
|
|
Loading…
Add table
Reference in a new issue