score:1
it sounds like your clojure.tools.logging is using a different underlying logging implementation than the rest of your application?
for example if your application is using java.util.logging, but you have a stray log4j library in your classpath, then clojure.tools.logging would detect log4j and would therefore not react to the logging config changes you were making.
the logic for detecting the underlying logging implementation is here:
https://github.com/clojure/tools.logging/blob/master/src/main/clojure/clojure/tools/logging/impl.clj
specifically:
(defn find-factory
"returns the first non-nil value from slf4j-factory, cl-factory,
log4j-factory, and jul-factory."
[]
(or (slf4j-factory)
(cl-factory)
(log4j-factory)
(jul-factory)
(throw ; this should never happen in 1.5+
(runtimeexception.
"valid logging implementation could not be found."))))
it would be helpful to run mvn dependency:tree
or lein deps :tree
to see what logging dependencies are on your classpath.
Source: stackoverflow.com
Related Query
- Suppress clojure logging in Eclipse?
- Maven - Suppress Overriding managed version warning in Eclipse
- Code formatting utility for Clojure in Eclipse
- How do I suppress Eclipse 3.5's warnings of dead code
- Enable console logging for Eclipse itself (the platform)
- Is there a way to suppress unresolved imports in eclipse in a PyDev project?
- Logging output in Eclipse WTP server
- How to add Profiling And Logging perspective to Eclipse Luna?
- Why we need apache common logging jars to install spring framework in eclipse
- Proper Logging for Eclipse plug-in development
- How do I suppress warnings in Eclipse for PHP?
- Clojure classpath issue within an Eclipse plugin
- Evaluation in Clojure REPL with CounterClockwise and Eclipse
- Suppress XML DTD error in Eclipse
- Gradle Cargo Plugin, not logging in Eclipse Console
- running clojure in eclipse (counterclockwise)
- How to suppress SQL Scrapbook "save resource" Dialog in Eclipse
- Suppress warnings for missing @Override annotation in Eclipse
- Suppress FindBugs warnings in Eclipse
- java mixed with clojure in maven and eclipse
- Eclipse plugin for Java that automatically adds logging events
- Eclipse PDE Logging
- Enabling ns-3 logging under Eclipse
- Disable Console Logging from MongoDB in Eclipse
- Loading Clojure code in Eclipse plug-in
- Logging out user from Subversive in eclipse
- Adding Profiling and Logging perspective to Eclipse on RedHat
- Servlet post request logging to Eclipse console
- How to change logging level with Mule studio Eclipse plugin
- Setting up Clojure code in Eclipse for both REPL and application deployment
More Query from same tag
- The compile time user.agent value does not match the runtime user.agent value
- Error in build path maven project
- Android secured coding checker plugin for eclipse
- C++ Eclipse: Debugging with optirun/primusrun on Linux
- How to install Angular CLI manually without using npm install
- How do I edit/undo/remove an entry from .svnignore in Eclipse?
- Is it possible to change settings for vrapper as you do for .vim?
- Can't find Eclipse RCP bundle
- How can I build a Mac OS X .app from an eclipse program
- ANTLR4 Swift grammar cannot identify a for-in statement
- Eclispe/STS terminates the maven program without output in console
- what's the difference between eclipse.ini and run configuration settings about jvm memory?
- how to decrease jvm size when i launching eclipse in window
- Parse HTML Offline
- Android Code Error causing Application stops unexpectedly
- can I build swing applications on eclipse?
- ldap authentication fails when running tomcat server in eclipse. Permission denied
- slf4j how to enable logging while working on eclipse
- In need of help - eclipse - import image
- googletest in eclipse broke down
- Error installing pydev
- getting all the data from mysql database table is not working in java
- Eclipse Juno no JSP in Dynamic Web Project (but everything else is fine)
- Resizing a screenshot to be attached to an email
- RegEx: How to find instance of new class in Eclipse?
- How to set default JDK for new Maven projects in Eclipse?
- Using a template within a template - eclipse
- How to go to an error using only the keyboard in Eclipse?
- Got java.lang.NullPointerException while do getTemplate("report.ftl")
- How to add offline Apache Spark dependencies to Java application?