Tagged Questions

Provides the classes and interfaces of the JavaTM 2 platform's core logging facilities. The central goal of the logging APIs is to support maintaining and servicing software at customer sites.

learn more… | top users | synonyms

5
votes
2answers
773 views

Setting java.util.logging destination programmatically

I'm using java.util.logging for logging and tracing purposes. How can I within a Java application dynamically set the file to which the log should be written.
3
votes
2answers
695 views

Swich off Jersey logging programmatically

In my output I have JUL logging messages from Jersey like this 03.12.2010 14:14:55 com.sun.jersey.api.core.PackagesResourceConfig init INFO: Scanning for root resource and provider classes in the ...
3
votes
1answer
3k views

slf4j logging with jdk – how to enable debug?

By default slf4j, when using with jdk (slf4j-jdk14-1.6.1.jar), does not log debug messages. How do I enable them? I can’t find info neither in the official docs, the web or here on how to enable it. ...
3
votes
1answer
981 views

Is there a robust java.util.logging handler implementation of syslog?

I'm looking into hooking up a 3rd party Java application to our log aggregation/analysis solution (probably Splunk, we haven't finalized our selection yet though). It seems to be easiest to hook the ...
2
votes
1answer
67 views

How to set maximim number of rolls and maximum log size for tomcat?

I have problem with space so need limit size of catalina.out to 10M and limit number of rolls to 3 previous days. Is it possible with only configure logging.properties? Thanks.
2
votes
4answers
95 views

Using the java.util.logging API to log different levels to separate files

i would like to know how to use the java.util.logging api, in order to have log message written in different log file depending on the level used. If the level is INFO then i would like to have the ...
2
votes
2answers
407 views

Can I disable c3p0 from logging to System.err?

According to the c3p0 documentation, you can manually specify where logs should go, whether through JDK 1.4 logging, Log4j, or through System.out. I'm running SLF4J, so I've included ...
2
votes
1answer
126 views

What is the proper idiom for using the built in Guice Injection for annotating static java.util.Logger instances?

I want to start using Guice 3.x to magically inject my java.util.logging.Logger instances. Here is a snippet of code I am trying to get to work: @Singleton public class Main { @Inject ...
2
votes
2answers
2k views

java util logging.properties: How to log to two different files

I am placing a logging.properties in the WEB-INF/classes dir of tomcat I would like to log to two different files. For example: org.pkg1 goes to one file and org.pkg2 goes to a separate file. I can ...
1
vote
2answers
54 views

how can we remove extra message in log files

i have a simple logging program ie: public class LoggingExample1 { public static void main(String args[]) { try { LogManager lm = LogManager.getLogManager(); Logger logger; FileHandler fh = ...
1
vote
2answers
215 views

How to delegate HornetQ logging to Slf4j

I want that all logging from HornetQ, which runs embedded in my application, is delegated to slf4j. Unfortunately any attempt failed. I allready tried added jul-to-slf4j installed the bridge ...
1
vote
2answers
294 views

Setting properties for logging in java

Before you read this, you should know that I am a python developer in uncharted java territory. I am trying to set up logging for java. I was able to get it to work when I set the ...
1
vote
0answers
137 views

JUL to SLF4j with oracle jdbc driver

I am trying to redirect java.util.logging messages logged by the oracle jdbc driver and the oracle ucp (universal connection pool) library, but not able to do so. The messages logged by my ...
1
vote
1answer
213 views

Setting up java Logger for a specific package

could anybody explain to me, how to set up java Logger for various classes from a concrete package ? for example: if I get this one and set it up Logger logger = ...
1
vote
1answer
765 views

How to redirect java.util.logging to a file?

I have a java program using an external library. The main program uses log4j to log its messages and the library uses java.util.logging. My problem is that log messages from the external library and ...
1
vote
1answer
210 views

tomcat6: cannot create directory for logging in linux

i use ubuntu 9.04 for testing platform. I have created a webapp that log a hardcoded string whenever someone visit index.jsp. I have enable SECURITY_MANAGER in /etc/init.d/tomcat6. And I have grant ...
1
vote
1answer
202 views

Install log formater in glassfish

I don´t like the output of the com.sun.enterprise.server.logging.UniformLogFormatter which might be uniform but not very helpfull. So in a first step I just replaced it with the ...
1
vote
1answer
138 views

How to disable JUL in 3rd party jar?

In 3rd party jar logger exist this code. 'Logger.getLogger("net.java.ao").log(Level.INFO, sql.toString());' How can I disable this logger from my program?
0
votes
1answer
12 views

Logging to a file in android using java.util.logging

I want to add a logging mechanism in my android in which i want to log messages to a file on the sd card. Since I had to log from different threads and as I do not want these threads to be blocked, ...
0
votes
1answer
136 views

Redirecting logs to log4j using slf4j api

I have an application which use java.util logging and libraries used by this application use different logging frameworks such as sl4j ,jcl,log4j .Now I want to redirect all logs to log4j so i ...
0
votes
0answers
37 views

How to configure JBoss AS 6 so that it logs java.util.logging statements?

Simply setting the java.util.logging.config.file property does not work.
0
votes
0answers
135 views

How to use custom Log Handler in java.util.logging?

This is what I'm trying to do: Logger logger = LogManager.getLogManager().getLogger(Logger.GLOBAL_LOGGER_NAME); ByteArrayOutputStream stream = new ByteArrayOutputStream(); Handler handler = new ...
0
votes
0answers
51 views

Limit log records from selective loggers - java.util.logging

I'm using java.util.logging and have created several loggers in my application. To set the properties of loggers, I do a getLogManager().readConfiguration() in a class that initializes the ...
0
votes
2answers
125 views

Need to close additional FileHandler for JUL?

I'm using java util logging for logging in a small Java EE application. To add an additional FileHandler (for example for errors/warnings), I created a LoggerFactory that creates the actual logger and ...
0
votes
1answer
311 views

How to logging output in console to file?

The NetBeans generate code like Logger.getLogger(svr.class.getName()).log(Level.SEVERE, null, ex); to output exception in catch.It will display in console. After I deploy my project,I cannot see any ...
0
votes
1answer
38 views

Updates in J2SE 5 Logging

Are there any significant updates in the Logging facility provided by J2SE 5 from J2SE 1.4?
0
votes
1answer
100 views

Need solution to webapp errors from Tomcat trying to log events after logger has been disposed

Enviroment: JSF 2.0, RichFaces 3.3.3, Facelets 1.1.15B1, Spring Framework 3.x, WebFlow 2.1, MyBatis 3.0.1, Oracle 10/11 g backend, SLF4j into Log4j. Well thats probably TMI since my issue is only a ...
0
votes
3answers
892 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 loggers. I allow the ...
0
votes
2answers
603 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 some are configured ...