3
votes
3answers
52 views
Log4J: Strategies for creating Logger instances
I decided to use Log4J logging framework for a new Java project.
I am wondering what strategy should I use for creating/managing Logger instances and why?
one instance of Logger …
0
votes
3answers
37 views
java wrapper around log4j logger and java.util.logging
I am writing a library. The library can be used by applications that use log4j loggers and java.util.logging loggers.
So, I wrote a quick wrapper class, that encapsulates both log …
2
votes
3answers
64 views
Overriding log4j settings at deploy time
For an application which is deployed on a large number of machines I took the decision to deploy a standard log4j.xml file with the application package, just to make sure that have …
0
votes
4answers
68 views
Creating daily logs with Log4j?
What configuration values are needed to setup Log4j to use the following pattern?
MyApp-Mon.log
MyApp-Tue.log
MyApp-Wed.log
Etc
With each file containing the days log.
This sound …
0
votes
0answers
23 views
Grails log4j configuration
Hi,
I've repeatedly had problems with the DSL introduced by Grails in version 1.1 for configuring Log4J. My current configuration looks like this:
log4j = {
debug 'co …
4
votes
12answers
239 views
Removing access to System.out in java
I maintain an application which acts as a container for multiple individual programs. These programs have their own dedicated logging facility, i.e. everything they log does to a s …
0
votes
1answer
19 views
Logging user agent info on login with Spring Security
Hi,
I am using Spring Security with LDAP for an application and I want to log the user-agent when the user logs in. However, I cannot access the request object in the Authorities …
0
votes
1answer
46 views
How do you Change a Package’s Log Level using Log4j?
I've encountered the following bug:
http://issues.apache.org/jira/browse/AXIS2-4363
It states the following:
This error only occurs when log level for org.apache.axiom is DEBUG …
0
votes
0answers
23 views
log4j logging to DB (in a cluster)
Hi,
I have a Java application wich runs on two machines in a cluster and they both log to one mysql database. Everything works fine, but I would like to have an additional field in …
1
vote
4answers
91 views
log4j: rotating log files based on time rather than size
I use log4j with the "RollingFileAppender" to create a log rotation based on a certain size per file. How can I configure it to log to each file for a certain amount of time befor …
1
vote
1answer
13 views
What are the available options to retrieve Spring-managed beans in a Log4J Appender inside a Spring-managed web application?
Hello. My current build lead has a great idea in theory - construct a custom Log4J appender that takes in Spring-managed beans and uses them to log errors to various other sources …
0
votes
2answers
39 views
How to validate Java logging properties files?
I have a basic facility for allowing users to remotely apply changes to the logging files in my application. Some logs are configured using java.util.logging properties files, and …
1
vote
5answers
64 views
What do you think about returning the logging sentence
I have this java code:
if(isNull(office) || isNull(pricelist)) {
log.warn("The document {0}-{1} is not valid.",codDoc,numDoc);
return null;
}
Do you think it is ok if I …
0
votes
2answers
48 views
Trimming down log output using log4j
How can I achieve the following using log4j:
log only events coming from a specific category , i.e. com.example.app but not com.example.app.context or com.example.dao;
log all ev …
1
vote
2answers
84 views
logging using Log4j
We are using Log4j in our project for logging. I want to log some statements for some of the classes without showing any extra information except from the content, e.g.:
Currently …
