Fork me on GitHub
#beginners
<
2016-10-21
>
len07:10:01

How do I get rid of these annoying messages

SLF4J: Class path contains multiple SLF4J bindings.
SLF4J: Found binding in [jar:file:/home/len/.m2/repository/ch/qos/logback/logback-classic/1.1.3/logback-classic-1.1.3.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: Found binding in [jar:file:/home/len/.m2/repository/org/slf4j/slf4j-nop/1.7.7/slf4j-nop-1.7.7.jar!/org/slf4j/impl/StaticLoggerBinder.class]
SLF4J: See  for an explanation.
SLF4J: Actual binding is of type [ch.qos.logback.classic.util.ContextSelectorStaticBinder]

len07:10:43

I have tried :exclusions in my project but feel like I am just stumbling around in the dark

rauh07:10:49

@len you should use exclusions. You can see which ones you need with lein deps :tree

agigao16:10:35

@keatondunsford Hey! frankly, I’m on a beginner level in Clojure, but if we figure out together little steps for the project then perhaps I’ll try to undertake it.

dorianc.b22:10:10

why does (hash-set 3 4 6 5 3 5) return #{4 6 3 5} instead of #{3 4 6 5}?

ghadi22:10:09

sets are unordered bags @dorianc.b

dorianc.b22:10:04

Ah thanks makes sense