0
votes
0answers
4 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, ...
0
votes
0answers
6 views

Log File doesnt get written to

Im using slf4j, and Ive specified the location of the log file to be written to 'C:\Program Files (x86)[Program Name]\check.log'. But somehow, the log file is not created after the program has been ...
0
votes
1answer
69 views

Java logging: is it log or logger? [closed]

Every now and then I run across code that looks like this: private final Logger log = LoggerFactory.getLogger(MyClass.class); Let's assume this is an slf4j logger object. If one uses Apache Commons ...
0
votes
0answers
17 views

LogBack use MessageFormat

Is it possible to use MessageFormat in logback ? I saw that it uses slf4j MessageFormat*ter*, because its faster as said here: Out of curiosity -- why don't logging APIs implement printf()-like ...
1
vote
1answer
23 views

Dependency management for SLF4J and Logback

I'd like to start using SLF4J with Logback. I read over Logback's online documentation and am now ready to add the JARs to my repo and try it out. But I'm at a loss! What JARs do I need? I downloaded ...
2
votes
3answers
36 views

Using Log4J, how can I write two packages to two separate files?

I have the following two packages: com.mycorp.project.first com.mycorp.project.second I'd like to configure Log4J (SLF4J) to write the logs from one package to one file, and from the other package ...
1
vote
1answer
40 views

Jetty 8 centralize logging with slf4j

i am currently try to configure centralized logging for jetty 8 with slf4j. I found the following [tutorial][1] but it seems not to work with jetty 8. Does someone knows how to do this with jetty 8? ...
0
votes
0answers
45 views

Handler error in SLF4JBridgeHandler in tomcat logs

My tomcat logs currently has a mix of log messages in different formats. So I am trying to set up SLF4J using JUL-to-SLF4J bridge. I was initially getting log messages like May 23, 2013 7:57:17 ...
2
votes
2answers
28 views

How to do Oracle style numbered logging?

In oracle one often gets messages like - ORA-01882: timezone region not found. This format has several benefits like - Easier to provide phone support, client only has to read out the error ...
0
votes
1answer
39 views

SLF4J as SpringFramework Logger

In one of our projects we are using SLF4J + logback for logging. Is it possible to configure spring-framework to use SLF4J instead of its default log4j?
0
votes
0answers
41 views

Logback with Spring MVC doesn't work [duplicate]

I developed a webapp with Spring MVC and build it with maven. I want to improve logging using logback sl4j logging framework, but I'm completely new to it. I modifide my pom.xml this way: <!-- ...
0
votes
0answers
85 views

How to configure jboss logging in version 7.1.3

What's the best way to configure logging in jboss, I've tried 2 approach (both failed): 1.) Use jboss built-in, according to some articles I just need to add dependency on slf4j-api as provided scope: ...
0
votes
1answer
49 views

SLF4J multiple bindings error on jetty 9 embedded webapp when trying to log jetty logs

I try to build a standalone version (executable jar) of a webapp. So I use jetty to load the war file. The war file already contains slf4j and logback as dependencies. In my standalone app I have a ...
0
votes
1answer
46 views

Swing Log Appender

I'm trying to show log contents to the users of my Swing application on demand. Displaying a list of log events, possibly allowing them to see details about log messages, ideally something similar to ...
0
votes
1answer
110 views

delete log file in runtime and slf4j+logback don't create it again

I using SLF4J + Logback as logging infrastructure in my application. logback.xml has following content in my app: <?xml version="1.0" encoding="UTF-8" ?> <configuration scan="true" ...
0
votes
0answers
12 views

Better logging output (one element = one line) for collections?

I am using slf4j with log4j and when doing e.g. log.debug("{}", aCollection); the output is like element1, element2... but I want element1, element2 because that's much easier to read and ...
1
vote
1answer
97 views

How to log from Spring MVC

I am trying to log from a controller in Spring MVC but nothing appears. I am using SLF4J with logback. I managed to log from a main class, but after making it a web application it does not log. I ...
0
votes
1answer
235 views

Eclipse STS Hibernate error: “Fetching children of Database”. org.slf4j.spi.LocationAwareLogger.log

I have looked and tried various solutions dealing with the SLF4J related issue but nothing has worked. All I am trying to do is use the Hibernate plug in inside STS. I Simply click on the Hibernate ...
0
votes
1answer
45 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
21 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 ...
0
votes
0answers
40 views

Jboss eap-6.0 rotating log files appear in bin directory

I have 3 applications on jboss-eap-6.0 all are working OK, but one of them is creating rotating log files in the jboss /bin directory exactly at 0:00 always with 0 bytes Everything else is logging ...
0
votes
1answer
96 views

Logback + Janino + Resin issue with java.lang.NoSuchMethodError

Hi I am using the following version of logback and Janino : <dependency org="ch.qos.logback" name="logback-core" rev="1.0.11" conf="runtime"/> <dependency org="ch.qos.logback" ...
0
votes
1answer
25 views

Automatically mark slf4j parameterized variables?

I am using slf4j. I have lots of log statements that look like this; LOG.debug("I like {} and {}", new Object[] { "foo", "bar" }); When this log statement is executed, I get logs that look like ...
1
vote
1answer
142 views

Java: How to log raw JSON as JSON and avoid escaping during logging with logback / slf4j

I'm using SLF4J with Logback in a JAX-RS application... I want to log to JSON in such a way that my message is not encoded again but printed raw into the logfile: At the moment it looks like this: ...
0
votes
1answer
37 views

Java logging for desktop and android [closed]

I am designing a Java API (https://github.com/jrenner/java-glances) and i want to know if there is a solution for logging that works on a PC as well as android?
0
votes
1answer
151 views

Set Dynamic Console Logging Level Using SLF4J

I'm using slf4j logging facade over the jdk built in logger. I'm confused how to set the logging level using a ConsoleHandler for SLF4J. public Class foo(){ Logger log = ...
1
vote
2answers
402 views

How to use log4j 2.0 and slf4j and Commons Logging together

I currently am starting a new Webapp (running on tomcat 6) I have components using slf4j and components using commons logging I plan to use log4j 2.0 as log implementation due to several reasons ...
1
vote
1answer
39 views

How do to show only markered logs in slf4j?

I'm developing a subsystem of a big project. So I made a special logging marker to separete logs of that subsystem from the main project logs. How do to show only markered logs by that special ...
0
votes
1answer
105 views

Does slf4j use commons-logging implementation by default?

I have only worked with log4j in the past. Now I am scouting a new project and noticing that it uses slf4j 1.7.2. I understand it is only an API specification which provides a simplified interface ...
0
votes
1answer
51 views

How to output logs of different levels to stdout based on a cmd line parameter?

I use slf4j 1.7.2 with logback 1.0.7. I want to be able to supply a command line parameter to my Java application that sets the level of messages logged to stdout. For example, -logLevel trace should ...
0
votes
1answer
104 views

How to configure slf4j to be able writing both to console and file?

At the moment I'm using log4j, but many Java technologies use slf4j (hibernate for example). I'd like to configure log4j instead of slf4j. Here is my log4j file: log4j.rootLogger=trace, stdout, ...
0
votes
2answers
549 views

JBoss 7: Equivalent to jboss-log4j.xml

I don't want to configure the logging using the standalone.xml or CLI, because it requires additional steps for my colleagues to get a working development environment. I want to have these ...
1
vote
1answer
77 views

Archive only old logs with logback

Is it possible to to archive only the old files with the logs? For example, I need to store logs as text 14 days, and then archive? Currently used appender: <appender name="FILE" ...
0
votes
1answer
47 views

Multiple RollingFileAppenders writing to same file

I have two contexts running in the same JVM and Tomcat instance, and I'd like to write to the same logging file using the logback RollingFileAppender. Is the logback RollingFileAppender synchronized ...
0
votes
2answers
175 views

slf4j logging in console instead of file

I'm testing Milton WebDAV API and I need to log when some document is opened. I can have it logging on Eclipse's console, but can't make it put the message on a external file. Found several links ...
1
vote
1answer
346 views

Force Jboss logging to use of SLF4J

I am using Hibernate 4.0 and Coldfusion 8 with Jrun which unfortunately has log4j already included and I can't remove it and the version of log4j is too old (no trace). Therefore Hibernate can't work. ...
0
votes
1answer
62 views

How to follow a request in the logs when using Restlet?

What is the best way of tracking a specific request in a log file of a Restlet servlet? If there are multiple requests at the same time, I would like to be able to follow a single request in the ...
0
votes
1answer
137 views

How to disable Hibernate 4 logging into Eclipse console?

everybody. I am trying to solve the next problem: switch off logging into console when i use hebirnate 4 (not 3). I have next .jars in classpath: slf4j-api-1.6.1.jar jboss-logging-3.1.0.GA.jar ...
0
votes
1answer
136 views

Hibernate log4j not recognizing log4j.properties

I have a hibernate standard java application (not a webapp). Logging already works by default. I would like to see the parameters passed in the sql queries. I have researched that in order to that ...
0
votes
0answers
53 views

how to override logger methods for slf4j?

we are using slf4j as our logging framework in our system. However, we need to add serveral lines in the logger methods to escape the html characters, like String newMsg = ...
1
vote
1answer
616 views

How to configure slf4j-simple

api 1.7 and slf4j-simple as implementation. I just can't find how to configure the logging level with this combination. Can anyone help out?
2
votes
0answers
53 views

Is it straightforward to make a logging library compatible with SLF4J? What are the steps to do so?

I have an in-house logging library and I would like to make it compatible with SLF4J. Is that an easy task? What is the roadmap to accomplish this?
0
votes
0answers
85 views

Log not visible on console using SLF4J

I have 2 java projects. both of them using slf4j for logging. I make a jar of the first project and add it to second project (in the web-inf\lib of the second project). Then I make the war of the ...
0
votes
1answer
35 views

How to specify a unique identifier for each thread in SL4J log message

Is there any way to specify a unique identifier for each log messages emitted by a specific thread using slf4j.Logger For example, if I have ten worker threads executed in a thread pool , I want each ...
1
vote
2answers
37 views

Pax-logging: specifying which timezone to use for logs

In my org.ops4j.pax.logging.cfg file, I've set: log4j.appender.mylogger.layout=org.apache.log4j.PatternLayout log4j.appender.mylogger.layout.ConversionPattern=%d{yyyy-MM-dd hh:mm:ss z} | %-5.5p | ...
0
votes
1answer
36 views

Adding Multiple File Appernders to a single Application

How to add multiple file appenders or rolling file appenders to a single application in java using log4j or slf4j. such that the orders related logs are logged in one file and application related ...
0
votes
0answers
56 views

Custom runtime debug log analysis in Java?

I wish to capture log messages at runtime, analyse them and catch some critical situations to debug. In analysis I should take class names, timestamps, Marker and other data into account. I need to ...
0
votes
0answers
258 views

Logging Configuration in Logback + SL4J + JBoss EAP 6.0

I am trying to use Logback with SL4J in a Web Application that is deployed on JBoss EAP 6.0. As per Logback and Jboss 7 - don't work together?. However, even this is not working! The application ...
0
votes
1answer
35 views

Is it possible to log to file using SLF4j without line feeds?

Is it possible to log to file using SLF4j without line feeds? Basically, I have a waitTimer() method that prints a "." once per second and I want all the dots to appear on one line in the log file.
0
votes
1answer
526 views

Using Logback but Log4j started displaying WARN no Appenders

I am using logback for my logging and it has been working however; the other day I started getting a warning log4j:WARN No appenders could be found for logger ...

1 2 3 4 5