log

Disable logging in Java at compile time

I have some Java code that I'd like to instrument with log messages for debugging purposes. The final (compiled) production code, however, should not contain any logging as it would slow down the execution time. Is there any way in Java to disable a logger at compile time? I am not afraid of the footprint a check inside the log method o...

Php mail(), how to get undelivered address list ?

Hi, I'm getting single emails, for each undelivered address that mail() send couldn't reach. Since this can be a painfull process, to keep copy pasting every single address, I'm wondering if it's possible to access a LOG or something ? Some notes: - I've got this app running on a GoDaddy server (I know it sucks); Thanks for your atenti...

IIS log files directory

Hi guys How to know IIS logfile directory using asp script file? ...

Make 2 doLogs display on the same line.

- (void)reverseGeocoder:(MKReverseGeocoder *)geocoder didFindPlacemark:(MKPlacemark *)placemark { [self doLog:[placemark.thoroughfare description]]; [self doLog:[placemark.locality description]]; if ([geocoder retainCount]) [geocoder release]; } Displays as: How can I make this work so that I can display these (thoroughfare & locali...

Installing boost log

Hello, I've got this library for logging in boost. I have a question about installing. How to install it? Here is the latest version. There are 3 folder: boost, doc, libs. How can I install this library without recompiling all boost? ...

How to Log All IRC data on Channel Using Twisted?

I have a somewhat unique request. What I am looking to do is listen on a specific port for all traffic coming through via IRC protocol. I then want to log all of those messages/commands/ect. I do not, however, want to join the channel. I just want to listen and log. Is there an easy built in way to do this? I have been looking at the irc...

Logging successful / unsuccessful Spring context initialization

Hi there, I need to log whether the Spring context was initialized correctly in a log file. If all the beans were wired and loaded correctly, I need to log that, as well as an incorrect initialization... I have created the appender and the log file, but the problem is that I don't know if there is something in Spring to log those two ...

Logging And Easily Viewing Large Amounts Of Session Data In Java

I need to set up a logging system for my java web application that not only logs the usual stuff (error message, error level, etc) but can also log additional information as well such as session ID. Sure I suppose I could put the session ID in the error message, but the problem is that I will end up logging lots and lots of data for lots...

Rack Request Log

Why Is there a reason Rack's request log by default outputs to stderr? If i'm not mistaken, the request log is Rack::CommonLogger which according to the RDoc: forwards every request to an app given, and logs a line in the Apache common log format to the logger, or rack.errors by default. Doesn't it make more sense to have an acces...

Math problems in Java; uncanny NaN from a calculation

Hi, I am working on a project that does a lot of querying and the some mathematical modeling based on results from these queries, and finally some scoring (read: "execution time too long to test thoroughly"). Recently I have realized a rather new problem/bug in my code; some of the results get NaN values for score! Here's how the score...

ServiceBase.OnShutdown and event logs in Windows .Net 3.5

I've written a custom service that overrides ServiceBase.OnShutdown(). Unfortunately, when I log to the event log, nothing is written. My guess is that the Windows event log was shut down before my service. Is there a way to order service shutdown so that my servce shuts down before the event logger? I don't want to have to write out to ...

event management php mysql

hi , i am working on a event kind website. What i am trying to do is, i show a form for broadasters to create their events for the particular date and then store them in the database. when the event date is current date then users will be coming to the site will click on that event link to watch the show. when they click on that link i ...

C# Log4Net - dynamically change log directory programmatically

I read through most of the related topics regarding changing log directory programmatically, but the answers were a little advanced. My problem is trying to dynamically change where my log file is saved from my C# application. I have a text box with a browse button to choose where it should be saved. Anyone have an idea or can point me...

How can I see queries that are executed against Oracle ?

Hi, I need to see the queries that are being sent to Oracle to execute them. Can someone give me specific detailed instructions on how to do this ? ...

How to analysis iphone's device log?

hey,every human,How to analysis iphone's device log? In addition, What is the meaning of the following content: and,what is the meaning of the : 0 libobjc.A.dylib 0x00007dd2 prepareForMethodLookup + 10", Thread 0 Crashed: 0 libobjc.A.dylib 0x00007dd2 prepareForMethodLookup + 10 1 libobjc.A.dylib ...

is it possible to log events of ssis package execution using c# to a file

Hi, Is it possible to log the events of ssis package execution called from c# Application app = new Application(); Package package = app.LoadPackage("<package_path>", null); package.ImportConfigurationFile("<configuration_path>"); DTSExecResult result = package.Execute(); I need to log the messages generated during the package exe...

How to move location of Atomikos's tm.out and *.epoch files?

I'm running a J2SE application that uses Atomikos which dumps it's numerous log files to the current directory. I'd like to move the location of these files to "/tmp", but I cannot locate a configuration property that I can set from within my Spring XML config file. The Atomikos documentation references a property: com.atomikos.icatch...

XAMPP for linux: how to get information about an error 500 ?

Hi, im gettin an error 500 in xampp. When i open /opt/lampp/logs/access_log i get this line: 127.0.0.1 - - [18/Jul/2010:23:02:53 +0200] "GET /miembros HTTP/1.1" 500 1900 Is there any way to get more information (cause, etc) about the error ? Regards Javi ...

Error when attempting to write to event log - Cannot open log for source 'SourceName'. You may not have write access.

We're currently trying to integrate existing classic ASP pages into our new method of logging to the event log. We're achieving this by calling a .NET assembly exposed as a COM object which does the actual logging to event log. This all works correctly, however when we try to write to the event log we get an error "Cannot open log for s...

Python and/or django solution for reading log files on linux?

I would like my Django application to be able to display local syslog etc files. I would like to avoid writing the logic for managing .1,.2 etc rotated files, and get an object for each log that I can retrieve a set of rows from. Is there any such python library, or even better, any such django app? Clarification: I don't want to writ...