logging

How i configure logrotate to not delete my log files after rotation?

There's a way to do this? ...

How to enable msg and debug logging with Log::Message::Simple

I'm using Log::Message::Simple and error()s appear immediately. However, calls to debug() and msg() do nothing -- I have to call Log::Message::Simple->stack_as_string() to get these. How can I get this logging to appear immediately? ...

Junk from vendor libraries flooding log4j

How can I best prevent these libraries from flooding my own apps log4j bus? I do not want to set everything to ERROR, but at this rate the vendor library is flooding up the log file at a rate of about a gig/day. I do not want it to log anything to this file... ...

ASP.NET MVC exception logging

i have just taken over an app that has a lot of code like below where exceptions are just caught and Console.Write(xxx) is there. I would like to change this so i have a simple log to review everything there is a Console.write() now. What is the simplest way for getting this setup in asp.net mvc to have a file to view on the IIS server...

Logging session duration to a database on asp.net website.

I need to log sessions to database on my asp.net website: who and when started and finished the session. I've configured odbc logging on my iis server but unfortunately there is no such information being logged (or I can't see it). How can I do it either on asp.net website (but simply because there are hundreds of pages and I can't modif...

In Java, how can I include dynamic version information in a log file?

From a Java application I can log a string, using a custom logging framework, as follows: logger.info("Version 1.2 of the application is currently running"); Therefore when a user sends me a log file I can easily see what version of the application they are running. The problem with the code above is that the version is hardcoded in ...

Logging overview from multiple applications

I have several .net applications (~100) that I am responsible for overseeing. Some of them have logging to database others have logging to event viewer and others to flat files. Several logging frameworks such as log4net, enterprise library as well as several in-house legacy logging frameworks no one knows how work exactly. My systems a...

How do I Log the Class file without the path in log4net

I want to be able to log the class file and line number in my log file so I am using the following config... <appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAppender"> <!--etc--> <layout type="log4net.Layout.PatternLayout"> <conversionPattern value="%date [%thread] %-5level (%file:%line) %logger => ...

How do I turn logging off using log4j?

Hi, I am using a third-party library which has a log4j.xml configuration - what's the best way to turn off the logging? ...

Log4Net filters "OR"

Is it possible to make a filter, for example a PropertyFilter that is neutral (and passed to next filter in the chain) if either one or another value matches? Something like: <filter type="log4net.Filter.PropertyFilter"> <Key value="myProperty" /> <StringsToMatch Operator="OR"> <Match>value1</Match> <Match>value2</Ma...

How to publish a web app that is using Enterprise Library for logging?

I'm building a web app and want to enable logging/error tracking. After reading the old question here, I choose Enterprise Library because I like the flexibility of handling various events/exceptions differently. It was simple to setup and install. But, I am not sure how to publish the web application. Specifically... since the loggin...

Why chose XML over properties files for Log4J configuration?

Are there any reasons to use XML over properties files for Log4J configuration? ...

HA Tomcat file writing solution needed

We have a simple Webapp running on two Tomcat instances behind Apache (a Tomcat HA setup using mod_proxy_balancer and mod_proxy_ajp). The role of the webapp is to write incoming request data to a log file. Given that each tomcat instance is running in it's own JVM, how should we implement the log file writing? It would be excellent if ...

Logging exchange of messages by a process

I am currently having an OS which does support logging mechanisms like syslog. However, it is tedious when it comes to debug a process ie to find out what events or messages have a particular process exchanged with other processes in the system. Can any one suggest me a better mechanism to do the same ? ...

How to use SLF4J Loggers in a JSP

I'm in the process of migrating the logging of a middle-sized application from a custom solution to something more standard. I've decided on using Logback and SLF4J, and I have successfully migrated most of the Java code. However, I have quite a bit of JSPs that simply use System.out for logging. I've never worked much with JSPs, and sta...

What's the most widely-used logging framework in C#?

Hi, I'm looking into how to implement logging in my C# app - its a DLL class library. What logging frameworks are most widely used - what would give users of my DLL the most flexibility and configurability? Is there a C# equivalent of log4j? ...

Performing your own runtime analysis of your code in C#

I have written a large C# app with many methods in many classes. I'm trying to keep a log of what gets called and how often during my development. (I keep a record in a DB) Every method is padded with the following calls: void myMethod() { log(entering,args[]); log(exiting,args[]); } Since I want to do this for all my methods, is t...

Configuring Java FileHandler Logging to create directories if they do not exist

I'm trying to configure the Java Logging API's FileHandler to log my server to a file within a folder in my home directory, but I don't want to have to create those directories on every machine it's running. For example in the logging.properties file I specify: java.util.logging.FileHandler java.util.logging.FileHandler.pattern=%h/app-...

How to create log file in in tomcat/logs folder

Hi all, I'm using log4j to log in application. Now the log file is created in the some location, like j:/logs/mylog.log, I want the log file mylog.log to be created in the tomcat/logs foder. How to set this? Now current log4j property is as follows log4j.appender.fileAppender=org.apache.log4j.DailyRollingFileAppender log4j.appender...

How do I log Transactions created by ejb3 requires-new attribute?

I have an ejb method executing in a REQUIRES context, that calls another ejb method with a REQUIRES_NEW context. I suspect the second transaction is not being created/executed, however I'm not certain how to tell. One way I've considered is to use p6spy and just log all new transaction & commit statements, however I would have expected ...