log4j is a popular Java-based logging utility. It is a project of the Apache Software Foundation and is licensed under The Apache Software License, Version 2.0

learn more… | top users | synonyms

0
votes
1answer
17 views

Messed up Log4J configuration in webapp

My webapp running in Tomcat 7 is repeating the same log message 6 more times. For example: [INFO] 1 29042 [http-nio-8443-exec-4] INFO com.lni.exchange.healthvault.ParseMeasurement - 1 29042 ...
1
vote
2answers
39 views

log4j - Why doesn't my appender show message?

At my work, I have inherited of the maintenance of a satandalone application. The following code configures Log4J but no messages can be seen on the console. LogManager.resetConfiguration(); ...
0
votes
1answer
26 views

Log4j multiple classes with different loggers and one property file [duplicate]

I have two classes A and B. I want to log class A to a.log and class B to b.log with a single log4j.properties in the root directory, my efforts so far: In class A: private static final Logger l = ...
1
vote
1answer
20 views

How to disable tomcat server console log?

My log4j.proerties log4j.rootLogger=DEBUG,R log4j.appender.R = org.apache.log4j.RollingFileAppender log4j.appender.R.File = logs/backup.log log4j.appender.R.Append = true log4j.appender.R.DatePattern ...
-1
votes
1answer
35 views

log4j:WARN No appenders could be found for logger - Using slf4j-log4j12

It looks like this question has been asked many times. But all the solutions I've tried (mostly be sure that the log4j.properties file is in the correct location and it correctly typed) do not work in ...
0
votes
1answer
18 views

java.lang.NoSuchFieldError: NO_FORMAT when tunning maven surefire junit tests

When trying to run junit tests from maven (maven surefire plugin) I get the following error: java.lang.NoSuchFieldError: NO_FORMAT This error seems to come from any call to my log4j logger. So when ...
1
vote
4answers
49 views

How do I add a prefix to log4j messages (at the object level)

I use log4j2 and I would like to add a prefix to all my messages. This prefix is passed to the constructor parameter and it depends on the instance of the class. So we're at the object level (not ...
1
vote
1answer
32 views

Log4j file appender to roll over every X minutes [duplicate]

How do I configure log4j properties to roll over every X minutes. I know that this can be configured based on size and yearly, monthly, daily basis. With the FileAppender I had wriiten custom code to ...
0
votes
0answers
7 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
0answers
7 views

How to disable warning messages in Jboss-EAP-4.3 server

I am using jboss-EAP-4.3 server to run my applications, everything is working fine. The Problem is I am getting the following messages continuosly.... 2013-05-21 17:00:57,938 WARN ...
0
votes
0answers
8 views

Data is updated in files but last modified time is not updated

Using log4J we are writing in a log file and when I open the log file , I see the content updated in the file, but when I see the properties listed , the last modified time is not updated. I am not ...
0
votes
1answer
21 views

Grails Logging not working in Forked Mode

I'm having a problem where logging works correctly when I run tomcat in non-forked mode from grails, but does not work correctly in forked mode. Here is my Log4j configuration: Config.groovy: // ...
1
vote
1answer
18 views

Log4j watch & spring

So we use log4j and want to update it at runtime. We don't call spring's log4j filter or log4j's configure() method. We put the log4j.properties in the root of the classpath as many articles ...
0
votes
1answer
31 views

Loading log4j from maven repository

I'm new to maven and i am currently trying to load the log4j jar (i am also using eclipse) with maven. If i search for "org.apache.log4" e.g. i find this entries: But if i add the selected one, it ...
0
votes
0answers
13 views

How to disable digester logging?

Taking suggestion from many forum and some of the question. how to not log Digester? log4j: errors to an errorFile I am not able to change the logger level of digester from debug. Log4j <?xml ...
1
vote
2answers
29 views

log4j - compress log file to gz on fly

is it possible to setup log4j to create gziped log files without creating intermediate .log files? There are several rolling strategies (rolling by date, etc), but they creates unzipped files first. ...
0
votes
1answer
20 views

Using log4cxx with a Qt library

Good afternoon guys, I'm working on a project that is using a Qt library in Visual Studio 2008. In this project I am using log4cxx 0.10.0 which is working fine. However, I am unable to get it to ...
0
votes
0answers
10 views

DOMException.HIERARCHY_REQUEST_ERR after calling log4j DOMConfigurator.doConfigure

I'm getting the exception while invoking the WebService in JUnit test: org.w3c.dom.DOMException: HIERARCHY_REQUEST_ERR: Es wurde versucht, einen Knoten an einer nicht zulässigen Stelle ...
0
votes
0answers
7 views

Tomcat stopped logging after daily archivation

On several servers i'm working with (same configuration) Tomcat stops logging. Based on timestamps, it looks like logging is stopped when it archives a log with RollingFileAppender. New server.log ...
0
votes
1answer
29 views

Proguard - Can't find any super classes

I'm getting this error: Unexpected error while performing partial evaluation: Class = [org/apache/log4j/chainsaw/Main] Method = [<init>()V] Exception = ...
0
votes
0answers
12 views

Logging in two or more file through single instance of logger

I am using ofbiz, in which i want to log logs based on request fire. if there are more then one request fire at same time then logs from these two request must be stored in two different files. but ...
0
votes
1answer
33 views

log4j with tomcat does not log what is logged in mvn test

I have a web application. When I run 'mvn test', it logs the debug messages to console, as I have configured it. But when I deploy it to tomcat, I don't see the the logs of the application. I am ...
1
vote
0answers
36 views

console logging inside a thread is not accurate

I'm using logback implementation and created an AsyncAppender so as to use logging inside a thread. The thread will be something like a monitor: it consumes a BlockingQueue of Objects added from ...
0
votes
0answers
8 views

catalina-daemon.out is growing too fast

We're running Tomcat 7.0.34 and finding that catalina-daemon.out is getting flooded with every level of log message, including DEBUG. So it grows to hundreds of megabytes in just hours. And it also ...
0
votes
2answers
24 views

Classpath is not working

I got source code from Hermes (hermes2_src_20100121). When I extracted it has about 10 folders which is separate projects. /myd1/Exetel/Hermes_SRC/ebxml-pkg /myd1/Exetel/Hermes_SRC/CorvusEbMS ...
0
votes
1answer
28 views

ThreadLocal cannot be set after redeploying the EJB on JBOSS

I am using JBOSS7. I store some information about the SOAP request in a ThreadLocal variable in order to adding it to the log4j header. My ThreadLocal class: class MyStorage private static final ...
0
votes
3answers
38 views

How do I use log4j with Maven and executable jar file?

I'm trying to get log4j working in a simple application but I'm getting the message: Exception in thread "main" java.lang.NoClassDefFoundError: org/apache/log4j/Logger I execute the application ...
0
votes
2answers
15 views

Apache Logging - Send log output directly to queue

Am using Standard apache logging (org.apache.log4j.logging ) Currently, taking the data to be logged manually, and publishing in to Apache Active MQ. Is it possible to configure the logging output ...
0
votes
1answer
38 views

configuring log4j to display errors

I've configured my log4j.properties so that it puts all the info and debug messages in a separate log file in tomcat. However, when the application fails, say bad sql command then the errors don't ...
0
votes
1answer
37 views

Logging errors in a grails application in the logs

When my Grails application crashes, it shows the error and the stacktrace on the error page because the error.gsp page has the following snippet <g:renderException exception="${exception}" />. ...
1
vote
0answers
9 views

Forcing RollingFileAppender with BufferedIO to push logs even if the buffer is not full

I am using log4j for logging in my application. I have specifically chosen the RollingFileAppender with the following settings. log4j.appender.file.immediateFlush=true ...
0
votes
0answers
14 views

log4j error with NTEventLogAppender on Windows 7 (64 bit)

I am running into the following errors when I use log4j's NTEventLogAppender. I already copied the NTEventLogAppender.amd64.dll and NTEventLogAppender.dll to C:\Windows, C:\Windows\System32, and ...
-2
votes
2answers
47 views

What is the default logging level for Java

I have recently started learning logging levels and going deep into the logging frameworks. For a simple java program, say Hello World which is the starter for any programming language. Can I ask what ...
0
votes
1answer
21 views

log4j. How to catch log events from dependency library

I have a project where I use my own utility library (.jar file). How I can see logs from utility library in my main project? They both have configured log4j.xml files.
-3
votes
0answers
25 views

Block concurrent transactions being committed via server code [closed]

In an application, if suppose a user is adding a device on a particular position and if another user from a different location tries to add a device in the same position, there are chances that the ...
0
votes
1answer
55 views

How to make CXF Logging feature work with SOAP messages?

I have logging set up for CXF. It is successfully logging using log4j. As a test I have modified the settings in log4j.properties, where the root logger is set to INFO. Adding ...
1
vote
1answer
40 views

How do I configure Log4j to read my properties file?

I am sending an SMS using SMSLib in Java. I have loaded the log4j jar file and placed the log4j.properties file in the right place, but it still can't read it: Exception text: log4j:ERROR Could not ...
0
votes
0answers
36 views

Change log4j properties during runtime

I've done a bit of reading on changing properties at runtime, however I'm looking to see if there are any other ways of doing it. I've discovered that there are a couple of ways : Manually changing ...
0
votes
0answers
19 views

RestTemplate logging POST data

my resttemplate.exchange() failed on a POST request, with the server returning a 500 error. I tried to set the root logging level to DEBUG, but nothing was logged before the 500 error was returned. ...
2
votes
3answers
37 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
26 views

Failed to find slf4j LoggerBinder when building [duplicate]

At first, i am new to stackoverflow and try my best to provide all information to you, that might help you help me solve my problem. I found some similar questions on this site, but none of them ...
0
votes
1answer
20 views

Hibernate with parameter values

I am using grails 1.3.9 and in my log4j file I have set the following properties: debug 'org.hibernate.SQL' trace 'org.hibernate.type' But still I am not getting parameter values from the sql ...
0
votes
1answer
38 views

How do I resolve this “ No such property [target] in org.apache.log4j.FileAppender” and “No output stream or file set for the appender named” error?

I managed to get log4J with ConsoleAppender to work in Eclipse, but when I change the appender to be FileAppender then I get these red error messages coming out(even though I altered the properties ...
0
votes
1answer
22 views

log4j debug message configuration

I am able to use my Logger with the simple call: logger.debug("blablablalbal"); It is also configured by an xml file and writes into a txt. Problem is: Sometimes i am looping over int values in a ...
0
votes
0answers
9 views

Is there a way to set/override the fileName of another appender in log4j asyncAppender?

Is there a way to set/override the fileName of another appender in log4j asyncAppender - eg. <appender name="ASYNCH_APPENDER" class="org.apache.log4j.AsyncAppender"> <param ...
0
votes
0answers
17 views

How to make Glassfish use different configuration for every application

I am using GlassFish, JBoss, Tomcat for my application servers. I want to use different log4j.properties for my applications on local, dev, test and prod envirment. So every project's application ...
0
votes
0answers
17 views

Log4J under 2 different domains sharing the same application

I'm using log4j-1.2.16 in my web-application running under tomcat7. The application is split into 2 parts. www.domain1.com goes to namespace 1, www.domain2.com goes to namespace 2 of the same ...
1
vote
1answer
25 views

How to set log level for specific class and package?

Here is my log4j stuff which is in .properties file logging.rootLogger=@DEBUG_LEVEL@, stdout, rollingFile, smtp ##logging.appender.stdout.Threshold=@DEBUG_LEVEL@ ...
0
votes
0answers
32 views

How to log querys using MongoDB in Grails?

I'm trying to log the queries that my application is doing to MongoDB database, but I can't find how to do that, all I find about logging in grails is based on hibernate, but I need to check how some ...
0
votes
0answers
25 views

Log4cxx file appender

I am having issues using the fileAppender with Apache's log4cxx.. Does anyone know of a good tutorial I can go through that includes setting of the properties file along with in code usage of it?

1 2 3 4 5 61