Tagged Questions

13
votes
5answers
7k views

how can i disable the default console handler, while using the java logging api?

Hi I am trying to implement the java logging in my application. I want to use two handlers. A file handler and my own console handler. Both of my handlers work fine. My logging is send to a file and ...
6
votes
4answers
5k views

Load java.util.logging.config.file for default initialization

I'm trying to load a custom log.properties file when my application is started. My properties file is in the same package as my main class, so I assumed that the ...
5
votes
1answer
456 views

What is the difference between log4j and java.util.logging

Which is best for getting the log files of user logged in his account? Explain with a small example... Thanks for your time...
5
votes
5answers
467 views

Managing a Large Number of Log Files Distributed Over Many Machines

We have started using a third party platform (GigaSpaces) that helps us with distributed computing. One of the major problems we are trying to solve now is how to manage our log files in this ...
5
votes
1answer
2k views

Why would you use logging.properties if App Engine automatically logs stdout & stderr to INFO & WARNING?

According to the documentation for Google App Engine for Java: The App Engine Java SDK includes a template logging.properties file, in the appengine-java-sdk/config/user/ directory. To use ...
4
votes
1answer
294 views

What is the most modern way to log to syslog using a java.util.logging handler?

I am specifically looking for the most up to date, modern SysLogHandler for java.util.logging. I have found a few that date back to 2001 - 2003, mostly un-supported now. I know that syslog is a ...
4
votes
2answers
481 views

Why does a java.util.Logger in a ShutdownHook within JBoss 5.1 not always prints to server.log?

I have a EJB3-Timer within a JBoss 5.1. edit: The ShutdownHook should set a flag, that the doTimeOut() can terminate graceful (otherwise it would complete the job, and the shutdown is stopped until ...
4
votes
1answer
224 views

Google App Engine - Configure default logger to send email

In my GAE/J application, how would I configure the default logger to report errors via email?
4
votes
3answers
1k views

Where does java.util.logging.Logger store their log

This might be a stupid question but I am a bit lost with java Logger private static Logger logger = Logger.getLogger("order.web.OrderManager"); logger.info("Removed order " + id + "."); ...
3
votes
4answers
312 views

Good examples using java.util.logging

I want use logs in my program, and I heard about java.util.logging, but I dont know how to begin. Can show me examples what can I do with the logging?
3
votes
4answers
2k views

disable java log rotation

I use java.util.logging.Logger to log in my app : FileHandler fh=new FileHandler(this.todayFileName, 0, 1, true); fh.setFormatter(new SimpleFormatter()); ...
3
votes
3answers
8k views

How to get java Logger output to file by default

Netbeans thoughtfully sprinkles Logger.getLogger(this.getClass().getName()).log(Level. [...] statements into catch blocks. Now I would like to point them all to a file (and to console). Every logging ...
2
votes
2answers
61 views

How do I suppress the date line from 2-line java.util.logging output?

I'm using the Java default logger, and right now it's printing a lot of useless trash to the output, here is a example, this line of code: log.info("Logging pointless information...") Will output ...
2
votes
2answers
310 views

Unable to locate c3p0 logging messages

Up until recently, we created a new database connection for every query. Each query is setup using connection.prepareStatement(query) and we were able to log these queries to our logger ...
2
votes
3answers
725 views

use Logger.getLogger() every time I need it or create once per class

I am using Java util Logger. According to the documentation for Logger.getLogger method, it says, "Find or create a logger for a named subsystem. If a logger has already been created with the given ...
2
votes
3answers
263 views

Filter unwanted INFO-Messages from Logger

I'm using java.util.logging to log in my Java application. I'm also using javax.xml.ws.Endpoint to publish a SOAP-interface. Over the time I added more and more exceptions which all turn up at ...
2
votes
2answers
436 views

Logging in Java

I am creating a logger in java by executing the following code: private static final String logFile = "." + File.separator + "Log Files" + File.separator + "Log_" + ...
1
vote
2answers
39 views

Using java.util.logging to log on the console

I want simply to log on the console using java.util.Logging: Logger log = Logger.getLogger("my.logger"); log.setLevel(Level.ALL); ConsoleHandler handler = new ConsoleHandler(); ...
1
vote
4answers
197 views

Appending TimeStamp in log file name of Java util logger

Currently I am using using Java util for logging logs into the file which can be configured from java.util.logging.FileHandler.pattern. I want to append a timestamp in the log file name. I also have ...
1
vote
2answers
372 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
2answers
150 views

Is it possible to specify a java.util.log formatter via a -D option or some way that doesn't require a code change?

I have a java program which is using the default XML logging as no formatter is defined, I am wondering if there is a way to change this outside of modifying the code or adding a logging.properties ...
1
vote
1answer
431 views

Why are my Level.FINE logging messages not showing?

The JavaDocs for java.util.logging.Level state: The levels in descending order are: SEVERE (highest value) WARNING INFO CONFIG FINE FINER FINEST (lowest value) Source import ...
1
vote
2answers
355 views

How to use java.util.logger in a web application?

I'm trying to use a logger across a web application. I have added the FileHandler to write the log into file. Now, I need to use the same handler across other classes/servlets in the project, so that ...
1
vote
1answer
331 views

How to configure the jdk14 logging's pattern

I guess I can chnage pattern by adding the line java.util.logging.ConsoleHandler.pattern, however where to check the pattern information like %u %h etc?
1
vote
1answer
113 views

Specify multple loggers with multple handlers for one class in java.util.logging

Is it possible to define two separate loggers each with its dedicated file handler for one class using java.util.logging? I want separate log file for errors and other application messages. I am ...
1
vote
1answer
395 views

how do I set the loggers in netbeans to print exceptions information to files?

I'm using NetBeans IDE to develop a project for my senior year. The project has to be handed as jar. The project works fine within NetBeans ( when im using "run project"). So , I created an ...
1
vote
2answers
324 views

Java logging levels confusion

I set logging level to CONFIG, but don't see messages written on CONFIG level. What I am missing? Configuration: Logger logger = java.util.logging.Logger.getLogger("xxx"); ...
1
vote
2answers
1k views

Where should I put logging.properties file for java.util.logging in web application (maven project)?

I want to logging to file and set it in properties file, because default logger.info() output goes to console and in web application there is no console in my case.
1
vote
4answers
505 views

Store Logging information to oracle database

I have currently implemented a java swing application. In that application I have used java.util.logging to log things in to a text file. But It is difficult to go through the text file since the file ...
1
vote
2answers
103 views

Get LogLevel for current class/bean

I am using the following approach when logging from my class: import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; ... private static Log log = ...
1
vote
1answer
280 views

Can I stop java.util.logging from contributing to a memory leak?

After stopping my web app, a significant amount of PermGen is not being released. The culprit seems to be the WebappClassLoader (in Tomcat, but it happens in Jetty too), which is kept in memory by ...
1
vote
3answers
2k views

java.util.logging: how to suppress date line

I'm trying to suppress output of the date line durinng logging when using the default logger in java.util.logging. For example, here is a typical output: Jun 1, 2010 10:18:12 AM ...
1
vote
1answer
355 views

how to configure my own formatter in java logging property file

For my java project, i am using the java logging api. I want to log everything using a property file. Before using this file (log.properties), I configured my onwn formatter in the java code. (see ...
1
vote
3answers
3k views

how to append timestamp to file name for java.util.logging.FileHandler.pattern

Hi I was wondering if anyone knows a way to append a timestamp to the log file name specified through logging.properties java.util.logging.FileHandler.pattern seems like something pretty straight ...
1
vote
2answers
1k views

DailyRollingFileHandler -— Files should be rotated on a daily basis

We have a requirment which requires to have an Handler that is extended from Java logging and allows to have the files rotated on daily basis. Currently Java util logging do have the support of ...
1
vote
2answers
197 views

Specify own Formatter in configuration file of java logger

I wrote a Formatter (test.MyFormatter) by extending the class java.util.logging.Formatter; Now I want to use test.MyFormatter instead of java.util.logging.SimpleFormatter: in the configuration file ...
0
votes
1answer
56 views

Logging doesn't work for lower levels

I am using java.util.logging, which works fine for higher levels above FINE but doesn't work for lower levels, though I have set level as FINEST. I have tried giving it Level.ALL also. I have user ...
0
votes
1answer
59 views

Is there a minimalist way to get a default ResourceBundle when you do not need localization?

I want to inherit to extend java.util.logging.Logger. The only visible constructor is protected Logger(String name, String resourceBundleName) This is despite the fact that when you want to get ...
0
votes
0answers
96 views

Jetty with a custom JUL logger

I feel this should be easier, or I am missing something obvious. I am trying to use our custom JUL logging library with Jetty. No matter where I put the JAR file for the custom logger, it is not ...
0
votes
2answers
152 views

java.util.logging stops working after a while

I have a problem with java.util.logging. Everything is working just fine from the start but after a while the logger simply stops do write any data to file and I have no idea why (no exception, no ...
0
votes
1answer
251 views

Customizing log format in logging.properties

I need some direction in configuring the log format in Tomcat 7. I am relatively new at logging configurations so please excuse humor this questions if it seems a bit basic... Using the standard ...
0
votes
4answers
353 views

How to make multiple instances of Java program share the same logging FileHandler?

I have a Java program which runs as 3 separate processes on the same server. I would like all of the processes to share a single log file, is there a way to specify that in a logging.properties file? ...
0
votes
3answers
230 views

Java Logging API question

I am currently using Logger from Java.Util, The default behavior for logger.info is like the following Mar 22, 2011 6:52:04 AM com.mycompany.app.App main INFO: Test API Logger The font is in red. ...
0
votes
1answer
270 views

Commons logging to use java.util.logging

I am trying to use commons logging and wan to use java.util.logging as underlying mechanism. LogTest.java import org.apache.commons.logging.*; public class LogTest { public static void ...
0
votes
2answers
702 views

Adjust Logging level for apache commons logging?

I have a simple console app which uses apache's PDFBox library, which in turn uses commons logging. I'm getting a lot of junk messages in my console which I'd like to suppress: Feb 15, 2011 ...
0
votes
2answers
1k views

How to make logging.properties and commons-logging.properties property files working?

I have two property files in my default package (I'm using NetBeans): commons-logging.properties with property: org.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger and ...
0
votes
1answer
477 views

WAS Logging - Java Util Logging and Log4j

I am seeking confirmations on followings: Using Websphere Application Server Admin Console, we can specify some logging configurations and that shows classes of your application also (as shown ...
0
votes
2answers
1k views

Hibernate: how do you adjust the default logging level (SJF4J and JDK 1.4 logger)?

I have a JavaSE/Hibernate test app (shell-based). I put the following JARs into the project's lib dir: antlr-2.7.6.jar commons-collections-3.1.jar commons-lang-2.5.jar dom4j-1.6.1.jar ...
0
votes
2answers
966 views

Performance and Functioanlity Difference between log4j and Logging Util class

I am newbie for the logging class in Java.util package, I have developed an Application and want to implement the logging mechanism at different levels, I am just thinking to which one to go for and ...
0
votes
3answers
205 views

How to regulate the amount of printouts generated by a logging instruction produces over time?

How can I limit a program log printouts to a maximum of X printouts within Y seconds? Programming server side with java.util.logging, my code has a lot of info, warning, and error statements like: ...