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

learn more… | top users | synonyms

2
votes
0answers
19 views

The build file called using <ant> task resets the logging configs of the caller

Two projects: the product (project-A) and the auto benchmark project for A (project-B). In B's build file, we need to call A's build file to run the build and bundle-with-app-server process like ...
0
votes
1answer
23 views

How to use a logging.properties file from disk as a java.util.logging.properties file

I have a basic cmd program that calls a jar which has an Install class with the main method. The Install class uses a java.util.logging.config.file from its resources folder. private static void ...
0
votes
0answers
33 views

How to enable debug logging on jenkins?

I am trying to debug how the ssh-slaves is behaving but the jenkins documentation from https://wiki.jenkins-ci.org/display/JENKINS/Logging is extreamly incomplete. I added a new logger and added: ...
0
votes
0answers
23 views

Android java.util.logging Level.CONFIG or lower not getting through

I'm trying to use java.util.logging on android, but has come across the issue that Level.CONFIG or lower doesn't get through to LogCat. Logger rootLog = LogManager.getLogManager().getLogger(""); ...
1
vote
1answer
31 views

Is it possible to change the logging.properties file without stopping Tomcat

I'd like to change the $CATALINA/conf/logging.properties file without stopping Tomcat 7 or any web application. The need is for exemple to change the level of detection, or to add a Handler on a ...
0
votes
0answers
12 views

How can I catch tomcat logs by using java.util.logging?

How can I catch tomcat logs by using java.util.logging? I haven't got idea how to bind logs to my handler
1
vote
0answers
18 views

I want to create Handler that will be catch all Logs of web aplications on Tomcat, and

I want to create Handler that will be catch all Logs of web aplications on Tomcat, I Created my Handler class, compiled it and put on $CATALINA_HOME/lib , and common.loader has this directory. After ...
0
votes
0answers
37 views

java.util.logging won't use custom formatter

I have created my own formatter, extending java.util.logging.Formatter. My logging.properties looks like: handlers=java.util.logging.ConsoleHandler java.util.logging.ConsoleHandler.level=ALL ...
4
votes
1answer
74 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
49 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
48 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
61 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
49 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
45 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
106 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 2 3 4 5 11
15 30 50 per page