logging

mysql binary log only log deletes

Hi, Is there any way in MySQL to only log deletes? I tried using the mysql binary log option but unfortunately, there are too many inserts to my database and the file swells instantly. If I let it grow for more than a day or so it will take up all the room on the server. I just want to log deletes for disaster recovery purposes. Any ...

Disable boto logging without modifying the boto files.

I am using the Boto library to talk to AWS. I want to disable logging. (Or redirect to /dev/null or other file). I cant find an obvious way to do this. I tried this, but that doesn't seem to help. import boto boto.set_file_logger('boto', 'logs/boto.log') This says it is possible, http://developer.amazonwebservices.com/connect/thread.j...

Exceptions and IDispatchMessageInspector

I'm using IDispatchMessageInspector to inspect request/response messages in my WCF service and log some data to our logging database. I also have a custom error handler which catches exceptions and transforms them to faults. I'd like to be able to log the exception (if any) in the IDispatchMessageInspector.BeforeSendReply() method but I ...

Configuring Grails to mail all exceptions generated in the production environment

Question: How do I configure Grails to send an e-mail with all log4j error messages (including exceptions) generated in the production environment? Worth noting: This question pertains to Grails 1.1, the solution for Grails 1.0 is described here. ...

Log4J not providing correct source info.

I am using log4j for traces. I am using the following pattern for my trace: <layout class="org.apache.log4j.PatternLayout"> <param name="ConversionPattern" value="%d{dd-MM HH:mm:ss.SSS} | %X{sid} | [%t] | %F:%M:%L | %-5p | %m%n"/> </layout> In some classes I expect to get: [11/4/09 17:03:57:160 IST] 00000012 SystemOut O 04-11...

Error while exiting cherrypy server

Guys, I am getting following error while exiting cherrypy server. What is this error about? 2009-11-04 09:32:35,015 WARNING Error in atexit._run_exitfuncs: 2009-11-04 09:32:35,015 WARNING 2009-11-04 09:32:35,015 WARNING Traceback (most recent call last): 2009-11-04 09:32:35,015 WARNING File "atexit.pyc", line 24, in _run_exitfu...

Wix CustomAction session.Log not working

I'm using Wix to setup a Windows Installer .msi file. I have a CustomAction that sets up a ScheduledTask, and in the CustomAction, I've put in some session.Log statements. If I build everything in debug mode, the session.Log statements seem to work, but when I build in Release mode, it seems to no longer log. Is this correct? Or are ...

What do you think about returning the logging sentence

I have this java code: if(isNull(office) || isNull(pricelist)) { log.warn("The document {0}-{1} is not valid.",codDoc,numDoc); return null; } Do you think it is ok if I rewrite it as: if(isNull(office) || isNull(pricelist)) return log.warn("The document {0}-{1} is not valid.",codDoc,numDoc); That way public void warn...

Logging when application is running as XBAP?

Anybody here has actually implemented any logging strategy when application is running as XBAP ? Any suggestion (as code) as to how to implement a simple strategy base on your experience. My app in desktop mode actually logs to a log file (rolling log) using integrated asop log4net implementation but in xbap I can't log cause it stores ...

In Rails, how can one log the entirety of each incoming HTTP request?

I'm building an application that talks to a Rails backend that is POSTing requests to Rails. It's failing. Is there an easy way to have Rails log and spit to console the entirety of each incoming HTTP request? If anyone is feeling particularly charitable, you may be able to help with the underlying cause. Using a simple curl command w...

Getting "Access denied for user 'root'@'localhost' (using password: NO)" in production mode and no errors getting logged

I deployed my Rails app and am getting 500 Errors on all pages. My production.log isn't showing anything (which is a problem), but I did a 'script/console production' and tried to run a simple query (User.find :first) and it throws this: Access denied for user 'root'@'localhost' (using password: NO) My database.yml file definitely has...

Write test results data to a Test Database in PHPUnit 3.4 release

I understand that the database log feature is supported in 3.3 version and not released in 3.4 is there any way I can use the database feature in 3.4 ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a global id in the message header so we can trace each message lifecycle through the system. I would like to be able to prepend any log message...

How to create a fixed back-end DLL for Pantheios logger

I have a VS 2005 solution that has numerous projects (most are DLL, 1 EXE which is a CppUnit project) and I am trying to add a fixed back-end DLL for the Pantheios logger so that I can use a single logger instance throughout the solution. Following the directions from the below URLs: http://stackoverflow.com/questions/1460185/use-panth...

Tomcat logging in eclipse ganymede

Hi I am using eclipse ganymede and tomcat 6. Nothing appears in my console when im using tomcat 6 Any ideas of what I could do so that i can see logging on the console All help greatly appreciated Damien ...

Output results of a task in a FOR loop with added variables for logging

G'day all, Trying to output the results of the task I'm running in a FOR loop with additional data. In this case, I'm using the FOR loop to read in server names from a text file to setup a scheduled job. I would like to capture the results on each loop and output to a log file but need to insert additional information such as server nam...

Removing access to System.out in java

I maintain an application which acts as a container for multiple individual programs. These programs have their own dedicated logging facility, i.e. everything they log does to a special log file. Nevertheless, application developers seem to love to throw System.out.println and e.printStackTrace calls all over, making it impossible to m...

Trimming down log output using log4j

How can I achieve the following using log4j: log only events coming from a specific category , i.e. com.example.app but not com.example.app.context or com.example.dao; log all events with a level of WARN or higher. ...

Logging SAS scripts

I've been developing a lot of Java, PHP and Python. All of which offer great logging packages (Log4J, Log or logging respectively). This is a great help when debugging applications. Especially if the app runs headless. Now, I have a SAS script that is supposed to run as a stored process. But for some reason, the execution seems to run v...

Null reference exception on MethodExecutionEventArgs.Method using PostSharp with multiple web service projects

HI, I'm using PostSharp to log entry and exit to every method in my Application assembly. This assembly is strongly named, versioned and registered in the GAC. It is then shared by 2 web service projects hosted in separate Virtual Directories inside IIS. When the OnEntry/OnExit method of the interceptor is invoked by WebServiceProject1...