1
vote
1answer
14 views

Dependency management for SLF4J and Logback

I'd like to start using SLF4J with Logback. I read over Logback's online documentation and am now ready to add the JARs to my repo and try it out. But I'm at a loss! What JARs do I need? I downloaded ...
0
votes
0answers
25 views

How to redirect android logging to stdout?

For testing an android application, we rely on logging which is saved as an xml file. I want to be able to direct standard android logging (android.util.Log) to be saved in this way. I'm currently ...
0
votes
1answer
30 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 ...
2
votes
3answers
32 views

Using Log4J, how can I write two packages to two separate files?

I have the following two packages: com.mycorp.project.first com.mycorp.project.second I'd like to configure Log4J (SLF4J) to write the logs from one package to one file, and from the other package ...
0
votes
1answer
12 views

Logging Interface Activity - Java

I'd like to know how I can log user activities in Java, I mean, the button the user clicked or the key that was pressed, without adding code to the original source code. I'd really appreciate any ...
0
votes
0answers
33 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 ...
0
votes
1answer
35 views

What is in android.util.Log#println_native()?

Here is the android.util.Log source code. At the very bottom (line 340), what is in the method: public static native int println_native(int bufID, int priority, String tag, String msg); ...
0
votes
0answers
22 views

interpretation of java GC log files [closed]

Just wondering if anyone knows a good source of information on how to interpret GC log files? I have seen bits and pieces around but I keep seeing some new things (i.e. DefNew) that I can't figure ...
1
vote
1answer
21 views

How to set log level for specific class and package?

Here is my log4j stuff which is in .properties file logging.rootLogger=@DEBUG_LEVEL@, stdout, rollingFile, smtp ##logging.appender.stdout.Threshold=@DEBUG_LEVEL@ ...
0
votes
0answers
14 views

How to Change Logging for Swing application in Oracle JDeveloper

I have a swing project in JDeveloper 11g. When I click "Debug", I got the following exception: Exception in thread "main" Exception in thread "AWT-EventQueue-0" Exception in thread ...
0
votes
1answer
24 views

Is there a way in logback.xml to specify file log destination through classpath:, without absolute path?

I've in my logback.xml configuration file this appender: <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> ...
0
votes
2answers
31 views

Can I autowire named loggers?

I'm using non static loggers named according to class name: protected Logger logger = LoggerFactory.getLogger(getClass()); Can I configure spring in a way, that will set proper logger using ...
0
votes
0answers
35 views

Logging in a App Engine Backend

I have a regular backend in my application which never stop. I need to be noticed about its state by some logs. For logging, I use the Logger class : private static final Logger log = ...
0
votes
1answer
32 views

How to make isInfoEnabled disabled in Log4J XML configuration

I have various log files (debug, error) and different configurations (e.g. dev, prod). In dev I'd like to have everything logged into my debug.log and errors written to error.log. However in ...
2
votes
2answers
27 views

How to do Oracle style numbered logging?

In oracle one often gets messages like - ORA-01882: timezone region not found. This format has several benefits like - Easier to provide phone support, client only has to read out the error ...
0
votes
1answer
28 views

Logging InputStream

I create an InputStream class, that extends CiphetInputStream. I want to log all data from my InputStream (that i use as input in parser further) so i done following: public class MyInputStream ...
2
votes
1answer
51 views

How to get threads to stop blocking each other from writing to log file on disk?

My threads have fallen behind schedule and a thread dump reveals they're all stuck in blocking IO writing log output to hard disk. My quick fix is just to reduce logging, which is easy enough to do ...
0
votes
1answer
53 views

Custom Annotations in Java

This is the first time I am trying to write a custom annotations in java. I am not sure whether it is possible or not but wanted to give it a try before approaching another solution. So here is the ...
1
vote
0answers
13 views

Why the perf4j graphs are not generated?

I've integrated Perf4j in a standalone application. I'm using SLF4J / logback as the logging system. The statistics are correctly generated in the perfs.log, but nothing is generated in the ...
0
votes
1answer
83 views

Java how to configure log4j2

i want to use log4j2 in my java web application. This is my dependency tree printed by maven [INFO] com.mypackage.app:APP:war:1.0-SNAPSHOT [INFO] +- ...
1
vote
1answer
21 views

Log4j for different tomcat workers

I want to configure log4j for different tomcat workers. I mean, I want to get separate log file for each worker. How can I achieve it?
0
votes
1answer
25 views

Felix log level regarding ServiceEvent and BundleEvent [SOLVED]

Every time Felix starts a bundle, I get logging output on the lines of: BundleEvent STARTED BundleEvent RESOLVED ServiceEvent REGISTERED The log level is debug, and it doesn't come from any felix ...
0
votes
1answer
13 views

How to create log activity from java to MySQL?

I want to create a log activity for each user when they login from my apps and insert into MySQL database with the structure like id_log (int, primary key, auto increment) username (varchar) time ...
-1
votes
1answer
25 views

Java server failure handling [closed]

I am making a java based server which handles requests from clients. The problem I am facing is that I have to keep record of requests in case if the server goes down and then comes up he know what ...
1
vote
1answer
57 views

Hibernate log dirty entity properties?

I'm using JPA with Hibernate as my provider. I have a case where an entity is being marked as dirty and I'm not sure why. Is there a logger that can be turned on that will print why an entity is ...
2
votes
0answers
44 views

Is switching within a log wrapper evil?

This is one of those questions that really wouldn't be worth anyone's time under normal circumstances but... The built in Android logging framework uses seperate methods for log messages of different ...
2
votes
2answers
84 views

Logging statement causes deadlock in simple Java code?

I'm having a weird problem with some fairly simple Java code. I have a class LicenseManager, which controls the licensing of a program, and can be controlled dynamically (new licenses can be issued ...
0
votes
0answers
26 views

Passing login frame username to be displayed on main frame

Hello im working on a system and need to display the username obtained from a login window's jtextfield to the main window after logging in. i been successful in opening the next frame when logged in ...
0
votes
1answer
37 views

Pros & cons of configuring logging at server-level vs application-level

Configuring logging in java can sometimes be tricky (due to the multiple existing logging APIs) and can be done at different levels (server, application, both?). So what are the pros and cons to ...
0
votes
0answers
46 views

Java Monitor logging file

I'm developing a tool to monitor logging files of several application, those applications use either java.logging or Log4j. The appender is always a rolling file appender with the size of the file as ...
1
vote
1answer
27 views

Add a web interface to access application logs

I am using Logback in my application, and I will like some logs to be accessible through a web based console. I though about starting an embedded Jetty inside my application and have a log-explorer ...
0
votes
1answer
22 views

Logs and Server Console

I am studyin the logs overview from here: http://docs.oracle.com/javase/6/docs/technotes/guides/logging/overview.html#1.15 and i have the following problem. I have created a simple WEB Application and ...
0
votes
1answer
44 views

Java Log formatter is reset

I initialize the logger like this: public static void init() { ConsoleHandler handler = new ConsoleHandler(); handler.setFormatter(new LogFormatter()); ...
0
votes
1answer
53 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 ...
0
votes
0answers
76 views

Logging to a database using log4J

I am going to be implementing an enterprise-wide logging solution. This will be a webservice, that will take all an exception and write details about that exception to a database somewhere. That ...
0
votes
2answers
51 views

Is there a way to filter log4j logs for a particular category

I have a requirement to collate all log4j logs belonging to a few categories and send out a mail at the end of each day. As I am logging all categories into the same (dated) file using ...
2
votes
2answers
198 views

Subclassing java.util.logging.Formatter doesn't work

I am using java.util.logging for logging (I don't want to use log4j or anything else). This is my complete private logging.properties: handlers= java.util.logging.FileHandler .level= INFO ...
0
votes
1answer
126 views

Several Flume-ng hdfs sinks write to same path

I want to understand how flume-ng will handle such situation in terms of file name collisions. Asume I have several instances of equally configured flume agents and client uses them as load balancing ...
0
votes
1answer
53 views

declaring log4j.properties in a web deployed applet

I have an applet which is deployed using the applet tag in a jsp. I sign all the libraries to be used and add them to the classpath by including them in the "archive" property of the applet tag ...
0
votes
0answers
20 views

capture LOG.fine output from a JAR

Can you get the fine level output of a log such as: import java.util.logging.Logger; private static final Logger LOG = Logger.getLogger(SomeClass.class.getName()); ... LOG.fine("some fine output ...
0
votes
1answer
47 views

Issue(s) Null Checking via LogCat - Data Does Not Appear In Log

I'm attempting to find the string or long values in my source code which return data (so I can post them to my server) however when I attempt to null check them using the following: Log.d(TAG, ...
1
vote
2answers
53 views

Redirecting System.out and appending to an existing file

I have a Java program which runs every 10 minutes. I want to capture a log of this process, for example consider (what essentially my program does): public static void someFunction() { ...
0
votes
1answer
64 views

what is the meaning of debug in web.xml

Below i have mentioned a link in which they discussed about the debug level in web.xml http://dev.anyframejava.org/docs.en/anyframe/plugin/optional/struts/1.0.1/reference/html/ch02.html ...
2
votes
2answers
128 views

log4j - Writing/Logging to multiple log file depend on application

Let assume I have a jar file called myApp.jar. The jar file is a comprised of 4 applications. All four applications within the jar file use the same code within the jar file and the only difference is ...
0
votes
2answers
30 views

View Logger output in eclipse for a java project

in one of my elicpse project I have come across this logger related snippet, I noticed that it is from slf4j library. private static final Logger logger = LoggerFactory ...
3
votes
2answers
159 views

java.util.logging with Websphere

I created a dynamic web project using IBM Rational Application Developer (RAD). I used java.util.logging as the logging framework. I put the logging.properties in WEB-INF/classes directly. The ...
0
votes
1answer
28 views

Filter messages on method level?

In log4j, is it possible to filter not only on a package / class level, but also on a method level? If yes, how? Thanks for any hint :-)
0
votes
1answer
119 views

Strange behavior of “org.apache.log4j.Logger” in Java

I am doing Maven project. I made a log using log4j. But it shows some starnge log in the given file. I try to understand, why this strange log comes, but I didn't understand. Please help me, why this ...
0
votes
1answer
44 views

Swing Log Appender

I'm trying to show log contents to the users of my Swing application on demand. Displaying a list of log events, possibly allowing them to see details about log messages, ideally something similar to ...
0
votes
3answers
56 views

How to append some strings in the log in the below code

I want to make a log in the java code. And, the whole process takes hours to finish. But my code makes all the log at the end of the execution, because buffer is closed at the end. Is there any ...

1 2 3 4 5 37