Fork me on GitHub
#figwheel-main
<
2019-01-11
>
jaide00:01:35

Does anyone know how to disable the [goog.net.WebSocket] and related logging or at least redirect it to a file or repl? I’m trying to write a reagent-blessed app and it’s messing with the rendering.

jaide01:01:16

http://cl.ly/1eef6fb11adc see how the log messages printing to stdout is interfering with the UI?

jaide01:01:15

lein-figwheel doesn’t have this problem

jaide15:01:35

Solved it. Posted solution in #clojurescript, turned out not to be directly figwheel related.

Vincent Cantin20:01:48

Hi, I have a very strange problem: on a minimalist Figwheel Main project, Figwheel stop to work as soon as I add [ring "1.7.1"] to its dependency. The crash does not happen with [ring "1.7.0"]. Is this a known problem?

Vincent Cantin20:01:31

I went to take a look at what changed between the 2 versions, but I did not find anything suspicious except the change of version used. https://github.com/ring-clojure/ring/compare/1.7.0...1.7.1 Is it causing somehow a conflict with the internals of Figwheel Main? If yes, what would be the possible reason?

bhauman20:01:19

Use 0.2.1-SNAPSHOT

bhauman20:01:56

The problem is Jetty look up jetty conflict in the docs

👍 5
Vincent Cantin20:01:27

ah, ok. Thank you!