Tagged Questions
4
votes
1answer
49 views
MDC(Mapped Diagnostic Context) support for JUL(Java.util.Logging)
I have a logging mechanism setup with Slf4j and java.util.Logging. I have several threads so I'm unable to get a clear idea from logs since they are mixed. Now I try to use MDC concept to add some ...
0
votes
0answers
26 views
JUL LogManager#readConfiguration using SLF4J not working for own classes
I'm currently migrating our project from Tomcat to Weblogic 10.3.6.0 and am struggling with the logging. The logging was not so great in the Tomcat branch of our application, using commons logging, ...
1
vote
1answer
49 views
Java separate logger configuration for each ID
I am looking forward to actually configure a logger that should be created for different IDs.
My application is very huge and there are nearly 20 users accessing the application at a time so when ...
0
votes
1answer
83 views
Different logging level between SFL4J and JDK logging
I am using JDK logging as a logging framework and SLF4J as simple facade.
I have some queries when I log different level logs.
SLF4J has following log levels
trace (the least serious)
debug
info
...
0
votes
0answers
22 views
Only seeing INFO level log messages in LogCat
I am using SLF4J with java.util.logging to log messages in my Android application. I have both plain java and android code in the same project and I want to use a single logger for everything. In ...
3
votes
1answer
236 views
How to consolidate java.util.logging, System.(out|err) and Jetty logging?
I read about how to make java.util.logging logs and System.(out|err) output be piped to slf4j:
Bridging java.util.logging to slf4j
Redirect System.out and System.err to slf4j
Sysout over slf4j
But ...
0
votes
1answer
75 views
slf4j and JDK14LoggerAdapter, configuration
I'm debugging an app running under Jetty, and the my code uses slf4j for logging. At the moment, the logger seems to use JDK14LoggerAdapter. And that does not log debug messages.
Now is there a ...
0
votes
0answers
93 views
Java app printing logging related error messages to stdout
When I run my java application, it prints to standard output the following two lines:
Bad level value for property: .level
Bad level value for property: java.util.logging.ConsoleHandler.level
This ...
0
votes
1answer
210 views
Seperating jetty and application log files
I am using slf4j with Java Util Logging, and my application logs are directed through Jetty.
How can I get separate output of Jetty startup logs and my application logs. Right now, they are both ...
0
votes
3answers
974 views
Performance & Memory Footprint of Java Logging , Log4J , Logback
I know, currently most suitable combination is SLF4J + Logback, however considering my requirement is very basic logging, my simple questions are
1> Performance & memory foot print wise which ...
4
votes
3answers
1k views
SL4JF in Tomcat not showing up in log files
I have installed Tomcat, and using SLF4J as our logging framework. I copied slf4j-api-1.6.4.jar and slf4j-jdk14-1.6.4.jar into the Tomcat library i.e $TOMCAT_HOME/lib.
I assumed that if I use SLF4J, ...
0
votes
1answer
301 views
Spring-AOP and SLF4J
I'm using Spring-AOP to advise a spring managed bean that extends an abstract class which implements 3 interfaces. There are other spring-managed beans around in the inheritance hierarchy.
I'm trying ...
1
vote
1answer
625 views
SOLR : Logging Bad Requests
I cant seem to figure out how to make Solr log all bad resuests - Basically whenever a bad URL comes in, say, a request on a requesthandler that does not exist like qt=unknownhandler, I need to log ...
2
votes
3answers
4k views
Hibernate: how do you adjust the default logging level (SJF4J and JDK 1.4 logger)?
I have a JavaSE/Hibernate test app (shell-based). I put the following JARs into the project's lib dir:
antlr-2.7.6.jar
commons-collections-3.1.jar
commons-lang-2.5.jar
dom4j-1.6.1.jar
...