logging

SSIS Pipeline performance counters

I am trying to log the performance counters for my SSIS Pipeline, for things like Buffer memory, Buffers in use, Buffers spooled, etc. I created a new log and added all those counters to it. Things are beeing logged, at every 15 seconds to the file, but all it's beeing logged are values of 0 - no matter the time of execution or the elem...

Translate Basic Config.groovy log4j DSL to external log4j.properties

The following is a basic log4j configuration inside Config.groovy using the log4j DSL with Grails 1.2, it works as expected (log all errors to the given file): log4j = { appenders { file name:'file', file:"c:/error.log" } error 'grails.app' root { error 'file' } } How would one translate this into...

What caused the rails application crash?

I'm sure someone can explain this. we have an application that has been in production for an year. recently we saw an increase in number of support requests for people having difficulty signing into the system. after scratching our head because we couldn't recreate the problem in development, we decided we'll switch on debug logger in ...

Pause the log4c++ logger

Hi, is it possible to pause the logger in log4c++, and by pause I mean to stop writing messages in the log file but not finalize the logger object or delete it. thanks in advance ...

No Commons Logging in Android?

I have a pretty big library I developed specifically for use in my Android Application. However business logic itself has no dependency on Android. To preserve that, I used Commons Logging throughout this library and it's respective JUnit tests (which I run in Eclipse). However now that I am starting to integrate it into an Activity w...

log analysis for rails

i have a rails app which makes heavy use of activeresource and httparty to make api calls. Is there any library/extension to log the requests and parse them, so that log analysis becomes easier and automated. RailsLogAnalyser is good but what about extra calls, what are the conventions? Something like a opensource/self-hosted alte...

Adding contextual information to your logging output in Python 2.5

I am using Python 2.5. The Python logging module allows adding contextual information to your logging output. Is something similar possible in Python 2.5? ...

Logs from instances created by Autoscaling(AWS)

I have an instance created with autoscaling enabled in Amazon web services, according to the Webload instances are created and terminated automatically. How do i get the logs from the instances that are created automatically. ...

How to get the level of the logging record in a custom logging.Handler in Python?

I would like to make custom logger methods either by a custom logging handlers or a custom logger class and dispatch the logging records to different targets. For example: log = logging.getLogger('application') log.progress('time remaining %d sec' % i) custom method for logging to: - database status filed -...

Reuse and add to 500 error to get better stats from soap

Hi We deliver a huge amount of data based on soap requests. Whenever a request fails, soap specifies a 500 error must be returned with a response object telling about the error. Now I know for a fact that MANY of our responses actually should be 400 errors due to bad requests, but we are not allowed to send those. Is it possible to add ...

How do I setup SOLR to write logs when it is deployed in Tomcat

Hello, I have successfully deployed an instance of SOLR 1.4 into Tomcat6 on a Redhat server. My question is, how do I configure it to log SOLR events? When I was using it previously on Jetty everything was getting logged to jetty/logs. However in Tomcat it doesn't seem to show up anywhere. Any ideas? Thanks! ...

running a php script via cron, how can I log any output?

Morning all, I have a php script which I have been testing, and seems to run fine when I call it from the command line. I now want to automate it via cron, how can I get the outputs I have put into the file as checkpoints into a log file? eg I have some simple echo commands in the script and I'd like the output to appear inside an exi...

Python Logging across multiple classes and files; how to configure so as to be easily disabled?

Currently, I have osmething like this in all of my classes: # Import logging to log information import logging # Set up the logger LOG_FILENAME = 'log.txt' logging.basicConfig(filename=LOG_FILENAME,level=logging.DEBUG) This works well, and I get the output I want, but I would really like to have all this sort of information in one pl...

Android ==> Loggin witthout going to debug mode ???

Is there any way to log within the application without being in debug mode. When i am in debug mode the application runs tooo slow. Thanks ...

Nlog .. 2 questions .. singleton and calling class/method/thread

Hi .. just trying to get up to speed fast. 2 questions .. My intention was to have a singleton class to make NLog available to the whole application .. is this the correct approach. How do I record the source i.e. Class .. Method .. thread etc. of the entry in the log. ...

Strategies to JavaScript console.log/trace, etc.

I am writing a rather large JavaScript software. I need to trace calls, log events, debug actions, while maintain performance and portability across browsers. Webkit and Firebug both offer console object with methods like trace(), log(), error(), warning(), etc. They are great, but what do I do when the browser is IE or Opera? Imagine ...

T-Sql Error Handling and Logging

Hi I am trying to maximize the benefits from an experience. Also I usually use Enterprise library logging block, I log errors and a portion of statistical information into the database, because it is centralized place to track errors, if database logging failed, Normally it goes to Event Log. Tracing messages should go into file: W...

Enterprise Library: Log to SQL Server CE?

Is it possible to use the Logging block of the MS Enterprise Library with SQL Server Compact Edition? Reason is that I want a hassle - free installation of the application, I can't require the users to install SQL Server Express Edition, sadly. Also, I want to use the Enterprise Library, because it seems to be the highest quality produ...

python - Which is the better way to enable/disable logging?

Which is better way to enable/disable logging? 1) Changing log levels, logging.disable(logging.CRITICAL) 2) log = None And logging messages this way, if log: log.info("log message") So that we can avoid unnecessary string constructions in case of logging disabled... ...

Graphing statistics over time in Ruby

In my Rails application there are some metrics about the content of the database I made available in an administration interface (number of users, number of users with actual data, rate of usage, numbers of database records in various tables). I can get this information at any point in time, but I want to log and graph historical data so...