Tagged Questions

69
votes
8answers
5k views

What's Up with Logging in Java? [closed]

Why one would use one of the following packages instead of the other? Java Logging Commons Logging Log4j SLF4j Logback
23
votes
3answers
16k views

Logging framework incompatibility

I'm building a small Java app and hoping to use logback for logging. My app has a dependency on an older project that does its logging via org.apache.commons | ...
17
votes
2answers
3k views

Best practices for using Markers in SLF4J/Logback

We are using SLF4J+Logback combination at our project for a while now and are quite happy with it, but our logging strategy is fairly simple, using straightforward class based loggers and no fancy ...
8
votes
2answers
133 views

Java: MentaLog logging library performance and feedback

I've stumbled over a new logging library called MentaLog. The name is weird but it looks like there are some interesting features not supported by log4j/logback, like zero-allocation, varargs, filters ...
7
votes
7answers
2k views

Why calling LoggerFactory.getLogger(…) every time is not recommended?

I've read tons of posts and documents (on this site and elsewhere) pointing that the recommended pattern for SFL4J logging is: public class MyClass { final static Logger logger = ...
6
votes
1answer
288 views

How to get logging working in scala unit tests with testng, slf4s, and logback

I'm new to Scala, and not that familiar with recent developments in Java, so I am having what I assume is a basic problem. I'm writing some Scala code, and testing it with test fixtures using ...
5
votes
1answer
159 views

How to use SLF4J to log to two different files based on type of msg..?

i am running a client server program in spring. i am trying to implement SLF4J + Logback for logging. Now the thing is my client (which in real life would be a device/sensor) will send me data in ...
5
votes
3answers
191 views

How to handle disk full errors while logging in slf4j?

I am using slf4j+logback for logging in our application. Earlier we were using jcl+log4j and moved recently. Due to the high amount of logging in our application, there is a chance of disk being full ...
5
votes
2answers
803 views

SLF4J - Logback: How to configure loggers in runtime?

we are using LogBack with our project, I want to configure logger according to some Data Base values, i.e If some DB value is set to true, then logger should use both file and DB appenders, if it's ...
5
votes
2answers
2k views

Logback to log different messages to two files

I am using logback/slf4j to do my logging. I want to parse my log file to analyze some data, so instead of parsing a great big file (mostly consisting of debug statements) I want to have two logger ...
5
votes
4answers
810 views

Logback SMTPAppender Limiting Rate

How can I limit the rate of emails a Logback SMTPAppender, so that it would email me at most once every n minutes? I have setup my logging according to the Logback appender, but I don't quite see how ...
5
votes
3answers
3k views

Logback tutorial

Where can I find a Logback tutorial and/or sample projects? Something similar with this "Log4j Tutorial" would be nice. Note: I am aware of the documentation available on the official Logback website ...
4
votes
1answer
109 views

How to sandbox SLF4J

I have a an application (extension) running inside a Smartfox server. Most of you won't know Smartfox, but the setup is like Tomcat. i.e. the extension has its own classloader which loads classes from ...
4
votes
2answers
1k views

How to package webapp when using slf4j/logback?

I have lots of web applications to build/package, and I would like to share their common libraries. Regarding logging, I would like to bundle slf4j-api with each application, but consider the ...
3
votes
0answers
42 views

force slf4j to print logs in sequence

I am using slf4j over log-back. Sometimes logs are not printing in the order (timestamp). Could we force it to log in the same order as the code is running? Update: This is happening when running ...
3
votes
3answers
138 views

Can I use Log4j.xml configuration for SLF4J and Logback?

I have a project using common-logging and log4j, I want to change to use SLF4J + Logback. Is there any way to use existing log4j.xml for Logback?
3
votes
4answers
124 views

Any reason to use private instead of private final static on the LogBack Logger?

When instantiating Logger in a Spring Controller, is there any reason to declare it as a static final? The Logger is not used outside MyController.class. I've seen both examples in use, but can't see ...
3
votes
1answer
133 views

LOGBACK: No context given for ch.qos.logback.classic.gaffer.ConfigurationDelegate@

I get the above message on the console at the start of program execution, and am unclear how to resolve it. For information, the program is written in Scala, uses the grizzled-slf4j adapter over slf4j ...
3
votes
1answer
204 views

How to use logback in a PlayFramework project

Because of dependencies on a project I am working on developing a web application using the Play!Framework, I have to configure logback to prevent it from flooding my output with DEBUG messages. But ...
3
votes
1answer
352 views

How to use MDC with thread pools?

In our software we extensively use MDC to track things like session IDs and user names for web requests. This works fine while running in the original thread. However, there's a lot of things that ...
3
votes
1answer
105 views

SLF4j - logback question: how many logger objects should you create?

I am just starting to use logback and I have a question: Should you create one logger for each class like the following: final static Logger logger = LoggerFactory.getLogger(className.class); Or ...
3
votes
1answer
251 views

Override Logback error output

In my custom exception class I've overridden toString(): @Override public String toString() { final String msg = getLocalizedMessage(); // base String str = getClass().getName() + ": [" ...
2
votes
1answer
60 views

JUL to SLF4J Bridge

I'm currently observing that a 3rd party library (namely restfb) is using java.util.logging and I'm seeing those logs end up in STDOUT even though I don't have an SLF4J console appender configured in ...
2
votes
1answer
100 views

If I get rid of my 'multiple SLF4J Bindings' warning the logging stops working

I've got the following directory structure in tomcat 6: tomcat |-lib | |- logback-classic.jar | |- logback-core.jar | |- slf4j-api.jar | |- myState.jar |-shared | |-lib | | |- ...
2
votes
1answer
179 views

How to configure Logback with java code to set log level?

I want to use default slf4j + logback configuration except setting "org.springframework.data.document.mongodb" logging level to DEBUG. How can I do it with java code ? I'm not using XML, and this ...
2
votes
2answers
1k views

SLF4J + logback + JBoss 7?

Has anyone got SLF4J / logback to work with JBoss 7? Previously, I was able to get my app to work in JBoss 5.1 by putting my "logback.groovy" in [server]/conf, and the logback core, classic (0.9.28), ...
2
votes
1answer
247 views

Where go my logging files of my webapp on a linux Tomcat 7 installation?

I currently develop a simple web app using Eclipse and a local Tomcat 7 server. I configured Eclipse so I can start the Tomcat 7 right out of my IDE - not much magic here. In my web app, I use SLF4J ...
2
votes
1answer
159 views

SLF4J log4j NoSuchMethodError on Category

I'm using SLF4J + LogBack to handle my logging, and have the appropriate jars to route the other logging framework calls. However I've run across the issue noted here: ...
2
votes
1answer
145 views

hostname undefined in logback/slf4j in production environment

I'm using logback/slf4j to do logging, and it works like a charm on my mac development machine. I have the following pattern used for mail appender subject: <subject>[ERROR] ${HOSTNAME} : ...
2
votes
2answers
433 views

Markers in Logback

So I'm really new to Logback and have a question about how I should go about implementing something. Say I have two appenders: and I want appender "a" to accept markers that are only 1 or 2, but I ...
2
votes
3answers
567 views

Logback native VS Logback via SLF4J

I have gone through the following article regarding the logging frameworks available for Java: http://michaelandrews.typepad.com/the_technical_times/2011/04/java-logging-reconsidered.html The author ...
1
vote
1answer
44 views

Is it possible to write a log into scr/main/resources in logback?

I have a logback appender: <appender name="logfile" class="ch.qos.logback.core.rolling.RollingFileAppender"> <rollingPolicy ...
1
vote
1answer
109 views

java.security.policy issue using logback

The following code runs file using LOG4J (and SLF4J): package test; import java.rmi.RMISecurityManager; import org.slf4j.Logger; import org.slf4j.LoggerFactory; public class TestMain { ...
1
vote
2answers
283 views

Logback - set log file name programatically

I am using logback, and I am trying to set the log file name programatically within my Java program (similar to Setting Logback Appender path programmatically), and I tried to adapt that solution as ...
1
vote
1answer
85 views

Why are log files commonly flat?

Are log files not meant to be read by machines but by users only? I wonder if there are file appenders for any logging framework that write their output to XML.
1
vote
1answer
193 views

migrate from slf4j+logback to slf4j+log4j

I was using slf4j+logback in my plugin for third-party application. New version of main application was switched from log4j to slf4j+log4j+custom appenders.... It look like that i need to change my ...
1
vote
1answer
230 views

logback.groovy configuration not logging anything

I have the following logback.groovy configuration file, and I can't seem to understand why it isn't doing what I would like it to do. Ideally, every message at TRACE or above should get logged to a ...
1
vote
2answers
77 views

Obtain last 500 logged messages

We are using SLF4J/Logback combination to perform our logging. One of the requirement we have is if anything fails, send an email to support/dev group with last 500 logged messages. I was trying to ...
1
vote
1answer
656 views

Logging with slf4j, and 'logback', but not creating specified log file which is in configuration. (using maven, jetty)

As specified in title I'm using Maven, and Jetty. For logging using SLF4J and Logback. I have 'logback.xml' at 'src/main/resources'. <configuration> <appender name="STDOUT" ...
1
vote
2answers
296 views

Wrapping the slf4j API

I want to retrofit slf4j with Logback into a legacy application. Good thing is, the legacy application has its own logging framework. So all I had to do is alter the logging framework to log to slf4j ...
0
votes
1answer
24 views

can't get log on socket? [closed]

I am using slf4j and logback API for logging. I configured log on socket. But when I am trying to read text I found "??" rather then logs. Please help me if anyone of you have an idea about it.
0
votes
2answers
284 views

SLF4J and LogBack configuration in GWT (Eclipse and Jetty)

I've made an app init function that I'm using both in Java and GWT applications. I have external logback.xml file that I'm setting the path to the "logback.configurationFile" System property. In pure ...
0
votes
1answer
58 views

while shifting from log4j to SLF4j using the SLF4J Migrator how to replace the log4j.xml with the logback.xml

I am switching from log4j to SLF4j. I used SLF4J Migrator for this. Now is it possible to use logback.xml instead of the log4j.xml ?
0
votes
1answer
77 views

How to show SLF4J logs of an RCP application in within the application?

Obviously it's possible to write my own appender in Logback which sends the output to an IConsole. Is there a simpler way?
0
votes
2answers
86 views

How to write event logs into xml files with SLF4J or Logback?

I want to create a customized log viewer and I need to integrate log files generated in .Net and Java platforms. First of All I want to know if I could write log events into a well-formed xml format ...
0
votes
1answer
66 views

How to suppress logging of some requests in logback-access?

I'm using logback-access with Jetty. It's working fine, except that http requests for images (*.jpg, *.gif) are getting logged. Most app servers suppress these log records because they bloat the logs. ...
0
votes
2answers
1k views

Exception thrown while using logback/slf4j

I am using slf4j 1.6.2 api jar (tried using 1.6.1 as well) - logback version is 0.9.29 (core & classic). I am using jdk1.6 on ubuntu. The exception I received is copied below. Exception in ...
0
votes
1answer
104 views

Weird missing constraint with Logback under Eclipse

I have a feature-based launch configuration for an Eclipse RCP product. The feature includes ch.qos.logback.classic, ch.qos.logback.core 0.9.29, and org.slf4j.api 1.6.1. "Validate plugins" shows this ...
0
votes
1answer
134 views

How to insert the username into MDC for the entire web request

I am trying to use a Mapped Diagnostic Context to add the username of the user making a page request to all relevant logging statements. However I have tried three different ways to make it work ...
0
votes
1answer
156 views

Solr logging with Logback

I try to log the solr output with logback. Using maven I build a new webapp and excluded any references to commons-logging and slf4j-jdk14 e.g. <dependency> ...

1 2