Apache Commons Logging is a logging facade for the Java programming language.
1
vote
2answers
39 views
Hibernate uses apache commons logging and slf4j - why are 2 logging abstraction layers needed?
I am not so experienced in the java logging libraries world.
I started using hibernate and then saw I needed to include apache commons logging library and sl4j library.
The actual logging library is ...
0
votes
2answers
55 views
Changing application context path leads to using different (unknown) logging configuration
Setup:
Tomcat 6.0.16
Struts 2.1.6
Apache Commons Logging 1.0.4
Log4J 1.2.17
What I did:
Change in server.xml:
<Context path="/" .../></Context>
to
<Context path="/shop" ...
0
votes
0answers
25 views
Unable to print debug statements using commons-logging
I want to use commons-logging for logging and i'm not able to print only debug statements.INFO and WARN messages are printing properly. I'm not understanding wat could have gone wrong. Here is my ...
1
vote
2answers
27 views
How to set ERROR threshold for everything except my package
I have configured logging via org.apache.log4j.PropertyConfigurator
log4j.rootLogger=ERROR, console
log4j.logger.com.mypackage=INFO
log4j.appender.console=org.apache.log4j.ConsoleAppender
// ...
0
votes
0answers
42 views
How to tell which logger apache commons logging is using?
Docs say apache commons logging does not itself use a logger, it just uses other loggers. Other docs say one can turn on diagnostic logging with
-Dorg.apache.commons.logging.diagnostics.dest=STDERR
...
0
votes
0answers
22 views
Why won't a third party jar log to my application log file
I am using a third party jar (I do have access to the source, but it was developed by another person), which uses commons-logging to log. The shell script that kicks off my java application has a ...
4
votes
2answers
236 views
Mixed usage of Log4j and commons-logging causes a “class loading deadlock”?
I think I found a situation where mixed usage of log4j a) directly and b) via commons-logging causes some kind of class-loading deadlock. I'm not sure if such a situation is possible at all (shouldn't ...
0
votes
1answer
658 views
jboss as 7.1.1 final logging
I have an ear that has a war as a sub deployment. The ear file has a META-INF directory that has a jboss-ejb-client.xml file which just has a ejb-recievers element and a webscheduler.war. This war ...
0
votes
1answer
111 views
Spring and logging properties file
I'm trying to use Spring. A dependency of Spring is
So I have added commons-logging-1.1.1.jar to my build path. This all works fine. And I get stuff like this:
Feb 28, 2013 2:40:39 PM ...
0
votes
1answer
577 views
Instantiation of bean failed; nested exception is java.lang.NoClassDefFoundError: org/apache/log4j/Logger
I am trying to get commons logging working for log4j configuration, but I keep getting an exception when starting the server. I also get a similar exception when trying to use StringUtils which is ...
1
vote
2answers
570 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 ...
0
votes
1answer
135 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
0answers
9 views
How to search the log file in apache commons logging?
I have a set of strings. i would like to know how we can search whether each string is exist in the given string contnet.
Thanks,
kathir
1
vote
1answer
63 views
Apache Tika Stopping Logging
I have a Java app that uses the Apache Commons Logging library to log various debug messages, errors, etc. It is currently set up to log to the console.
This is all working fine, but when I include ...
0
votes
2answers
167 views
isInfoEnabled () for Commons Logging
I am using logger.info("statement" + string) in lot of places in my applications including for loops and if statements.
I checked and found out that the string message get created first even when ...
0
votes
1answer
129 views
Consuming Web Services in Lotus Notes shows error message no implementation defined for org.apache.commons.logging.logfactory
I have been struggling this for weeks now.
I tried almost everything.
Loosening security
Putting earlier version commons-loggings.jar
Putting commons-loggins properties file
But all effort in ...
2
votes
4answers
116 views
What logging system I use?
How to determine, what logging system given project uses?
It has signs of log4j, slf4jand logback. Looks like active config file is log4j.properties. The loggers are created in classes by
private ...
0
votes
1answer
51 views
CommonsLogger equivalent for slf4j
We are migrating from commons-logging to slf4j.
We are using org.apache.fop.apps.Driver class to generate PDF files. Now, setLogger() method of Driver class takes ...
0
votes
0answers
42 views
Is it possible to use FileWriter and apache.commons.logging / Log4J?
I am using opencsv in order to open a log file and write into it.
CSVWriter writer = new CSVWriter(new FileWriter("/home/toto/var/log/toto.log", true), ';');
Is it possible to do the same things ...
1
vote
2answers
100 views
Logging an Exception using commons.logging in Java?
I am using commons logging in a Java application, and I want to log the exception from the stack trace.
catch( IOException exception ) {
logger.error( "IOException Occured :", ...
0
votes
1answer
93 views
Programmatic configuration of Apache Commons Logging
I want to include an external library in my Java project, and this library in particular uses Apache Commons Logging to write messages to the logging system. The library writes a lot of messages of ...
1
vote
0answers
1k views
Websphere 8.5: Class org.apache.commons.logging.impl.Jdk14Logger does not implement Log
I developed an JSF-App with ICEFaces 3.0.1. With Tomcat and Glassfish, the App works fine. Now I wanted to test it on a WebSphere Application Server 8.5.0.0. The App starts but when I do some action, ...
1
vote
1answer
92 views
Redirecting logs from component using commons logging through application log4j.xml
I am new to logging mechanisms , hence pardon me if my question seems naive.
I am using log4j in my web application, but one of the components used uses a customer logger, say A that implements ...
0
votes
1answer
89 views
How to restrict child class log level from propogating to parent class in java?
I was analyzing the application logs and identified that there were a lot of debug logs coming from a class in one of the spring's libraries.
I have extended a class in spring which has turned on ...
1
vote
1answer
252 views
log4j logging to console but not File blazeDS
I am seeing strange behavior using log4j that I am completely stumped on. This is my first time using it with BlazeDS and I am hoping it is a small issue I have missed.
In this web app, I am using ...
0
votes
0answers
242 views
Logging Apache POI standalone application
I'm trying to log the operations that are performed inside Apache POI API with log4j.
I have the following configurations in a properties file:
log4j.logger.org.apache.poi=DEBUG, apachepoi
...
0
votes
2answers
359 views
Google library for Java logging?
I have been using the Google Guava library and find it much more usable than Apache Commons for argument validation (i.e. checking preconditions, invariant object state, conveniently throwing the ...
0
votes
0answers
218 views
log4j produces no output on specific Weblogic servers
We are distributing an application that is deployed as a bunch of WAR files in various WebLogic servers (9, 10 and 11) at various customers' sites. Those apps are using commons-logging and log4j. It ...
2
votes
2answers
218 views
OSGi-ified Apache Commons Logging?
I need an OSGi-ified version of Apache POI, but couldn't find one, so I built one using BND. BND claims that Apache POI needs Apache Commons Logging. So I looked for an OSGi-ified version of that, ...
0
votes
1answer
175 views
Config files needed for SLF4J bridging
I am writing a Java app that will use SLF4J to handle logging with a runtime binding of JUL (Java Utils Logging). Thus my classpath will have slf4j-api-1.6.4.jar as well as slf4j-jdk14-1.6.4.jar on ...
1
vote
2answers
6k views
Write log file using org.apache.commons.logging
I'm writing an application where I need to write log to a file using org.apache.commons.logging library, but i don't know how to start.
Can anyone help me?
Thanks & best regards.
0
votes
2answers
547 views
Getting email client does not support HTML messages for Email through Java
I am sending email using apache-commons-logging.jar. I am able to send html email successfully, but few people are getting Your email client does not support HTML messages message in their mail. The ...
1
vote
2answers
453 views
Apache axis logging - ClassCastException while using it inside a Jira plugin
My Jira 5.0 plugin is broken with the following exception:
java.lang.reflect.InvocationTargetException
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
...
Caused by: ...
0
votes
1answer
393 views
log4j and spring
I am developing a Java desktop application and I am using Spring with it. Now I want to inject log4j to my classes using applicationContext.xml. My log4j properties file is placed in a source folder ...
1
vote
1answer
155 views
Glassfish: Illegal character in path at index 11: commons-logging-1.1.jar?
So I'm about to develop a Spring MVC web application. But there is an exception everytime I deploy the app which says:
java.net.URISyntaxException: Illegal character in path at index 11: ...
1
vote
1answer
399 views
Commons Logging bundle in OSGi runtime
I am currently trying to get a bundled started in Equinox.
This bundle requires commons-logging.
I tried including the latest commons-logging jar from Maven Central. No luck.
I then moved to slf4j. ...
0
votes
3answers
3k views
Whats the root cause of Log4JLogger' cannot be found or is not useable?
I have commons-logging.jar (v1.0.4) and log4j-1.2.8.jar in the classpath and getting following run-time error:
Caused by: org.apache.commons.logging.LogConfigurationException: User-specified log ...
0
votes
0answers
503 views
How best to debug logger.info(…) , logger.error(…) not writing?
In a large project we have something like:
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
class Test {
static final Log logger = ...
6
votes
1answer
2k views
How to setup commons-logging to use logback?
We use slf4j + logback, and happened to have some 3rd party libraries which use commons-logging. How to I set it up to use logback?
0
votes
0answers
2k views
Configure Commons Logging to use a specific Log4J properties file
I'm trying to configure Commons Logging to use a specific Log4J properties file by specifying the name of the file in commons-logging.properties however Log4J continues to look for a file named ...
8
votes
3answers
3k views
Maven build [WARNING] we have a duplicate class
Anybody has any idea what happened to my maven build? I am getting a lot of duplicate warnings.
[WARNING] We have a duplicate org/apache/commons/logging/impl/LogFactoryImpl$1.class in ...
2
votes
1answer
386 views
JCL logging in Glassfish via SLF4j
I'm trying to setup logging of application on Glassfish server. I use SLF4j to aggregate everything and Logback binding to write the files. Also I added log4j-over-slf4j, jul-to-slf4j and ...
1
vote
2answers
271 views
Apache Common Logging
let's begin with the default code of logging between two classes :
Implementation:
Class A:
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import com.cc.B;
...
0
votes
1answer
227 views
Apache Commons Logging - New Line Charachters
we are using apache commons logging in our application for all our logging requirements.
A funny use case popped up this week that I had a question about.
We started receiving FIX messages from ...
0
votes
2answers
298 views
Choice of logging framework for open source java project
Recently I published my open source java game server code to github and faced the following dilemma "which logging should I use".I want my library to have most "ease of use" for end developer. I hope ...
0
votes
1answer
354 views
Apache Commons logging in a JSP
I've read many different articles/threads on this, but have yet to determine the best way to perform Apache Commons logging in my JSP.
To provide some context, I am adding improved error logic to an ...
1
vote
1answer
228 views
redirect logger output to a textpane in java
how to redirect org.apache.commons.logging output to a JTextArea??
I successfully redirected sys.err and sys.out using MessageConsole. its working fine. but I am not getting log output in textarea
0
votes
2answers
1k views
Apache commons logging configuration
I am pretty new to java logging mechanisms, and I am now trying to use apache commons logging for my project. It's a Java EE project and the EAR file is deployed to WebLogic server. Basically, I want ...
2
votes
1answer
187 views
Explanation of class loading in an EAR for non-requested but dependent class
I'm trying to track down a problem I'm having in WAS 6.1 with AXIS 1 and Commons Logging. My EAR is set to parent last. In the ear is commons-logging, Axis and a client jar that uses Axis. The classes ...
8
votes
6answers
472 views
Commons Logging priority best practices
This may be a purely subjective question (if no organization has attempted to standardize this), but my team struggles with this more than you would think.
We use Apache Commons Logging as our ...

