Java package which provides the classes and interfaces of the Java 2 platform's core logging facilities.

learn more… | top users | synonyms

1
vote
0answers
11 views

MDC(Mapped Diagnostic Context) support for JUL(Java.util.Logging)

I have a logging mechanism setup with Slf4j and java.util.Logging. I have several threads so I'm unable to get a clear idea from logs since they are mixed. Now I try to use MDC concept to add some ...
0
votes
1answer
13 views

Java applet logging

I'm not a Java developer so please remain calm if I write something incorrect. I have a binary distributed Java applet which I decoded into quite readable source. My goal it to analyse activities of ...
0
votes
0answers
39 views

How to use logging.properties for different clases?

I have a properties file logger how to do so that I can use it for different classes, but they had a different name? In my case, for different classes will logger with the same name. Here is my file ...
2
votes
1answer
15 views

specify custom logging.properties under tomcat

I'd like to have 2 webapp under a tomcat, the 2 project should have their own logging.properties. I know this is possible, if you put logging.properties in the war file, but I'd like to specify a ...
0
votes
0answers
15 views

what it mean in logging.properties at vert.x?

it is default logging.properties. handlers=java.util.logging.ConsoleHandler,java.util.logging.FileHandler java.util.logging.SimpleFormatter.format=%5$s %6$s\n ...
0
votes
0answers
10 views

JUL LogManager#readConfiguration using SLF4J not working for own classes

I'm currently migrating our project from Tomcat to Weblogic 10.3.6.0 and am struggling with the logging. The logging was not so great in the Tomcat branch of our application, using commons logging, ...
0
votes
1answer
38 views

Java Logging API generating empty log files

I tried to go through the tutorial on the Java logging API: www.vogella.com/articles/Logging/article.html But the generated files are empty (tested in Netbeans, Eclipse as well as running the jar ...
1
vote
1answer
25 views

create a directory with filehandler

I used java.util.logging to create two logfiles. Here's how it looks like. Handler fh = new FileHandler("%h/AntonGUI_Tester/Logfiles/"+logTime+".html"); fh.setFormatter(new HTMLTableFormatter()); ...
0
votes
0answers
56 views

How get java.util.logging properties file working with maven and in eclipse?

i am working on a webapp project where I have to write the logs to a custome file. The project uses maven, but doesn't have the standard maven layout and the layout cannot be changed. I am having two ...
2
votes
1answer
73 views

Java logger executing method

I wrote the method to check the working functionality of the logger as follows, package test; import java.util.Date; import java.util.logging.Level; import java.util.logging.Logger; public class ...
1
vote
1answer
35 views

Glassfish logs to a null Logger - how to set the log level then?

I'm coding on GlassFish Server Open Source Edition 3.1.2.2 (build 5) with Netbeans7.3. I use java.util.Logging and changed the Logging format of the console - no change to the glassfish logs. When I ...
-1
votes
1answer
31 views

Java logger does not prompt for the addHandler method [closed]

I want to log different classes logging to different files in JAVA. I am using java.util.logging for the same. I have defined the following logger in my class: import java.util.logging; ...
0
votes
1answer
44 views

Force JUL with clojure.tools.logging

My Clojure app needs to log through Java.Util.Logging (JUL) because custom log rotation is no supported at the moment with Elastic Beanstalk. I'm using clojure.tools.logging to write the log files, ...
0
votes
1answer
64 views

Unable to set log level in a Java web start application?

Some logging levels appear to be broke? I run a Java web start (which I will begin to call JWS from now on) application straight from a GlassFish 3.1.2.2 instance. The client has a static logger like ...
1
vote
1answer
45 views

Java separate logger configuration for each ID

I am looking forward to actually configure a logger that should be created for different IDs. My application is very huge and there are nearly 20 users accessing the application at a time so when ...

1 2 3 4 5 11
15 30 50 per page