log

How to log subsonic3 sql

Hi, I'm starting to develop a new asp.net application based on subsonic3 (for queries) and log4net (for logs) and would like to know how to interface subsonic3 with log4net so that log4net logs the underlying sql used by subsonic. This is what I have so far: public static IEnumerable<arma_ocorrencium> ListArmasOcorrencia() { ...

How to capture input parameters from within stored procedure (SQL Server 2005)?

I would like to create a generic logging solution for my stored procedures, allowing me to log the values of input parameters. Currently I am doing this more or less by hand and I am very unhappy with this approach. Ideally, I would like to say something like the following: "given my spid, what are my input parameters and their values...

how to show log in google-app-engine's log window ..

i can use firepython to show log to firebug, but how to show log in the localhost's log window ? thanks ...

How do I pipe the stdout of a program in DOS to a daily rolling logfile?

I've got a DOS program kicked off by a cmd script that dumps a lot of data I'd like to track in a log file. I can easily pipe it to a file - but I need a rolling logfile. Is there an easy way to pipe the output to a program that will generate a daily rolling logfile? (ie a new file is created for each day) ...

Where can I find a file/struct layout for a tcpdump() file?

We are capturing packets to a file using tcpdump(). I need to write a program to parse it, does anyone know where I could find a file layout for a dump file created by this tool? ...

Log call information whenever there is a phone call.

Hi, I have written the android application and I want the application to send the call information whenever there is an incoming call and it ends. This way I would be sending all calls to the server irrespective of size of the call log. Here is the code public class PhoneInfo extends BroadcastReceiver { private int incoming_call =...

Anyone know why I can't access the winevt folder programmatically in C#?

I've been trying to get into the 'C:\Windows\System32\winevt\Logs' folder programmatically using C# so I can copy the event log files to a backup directory and then clear the event logs as a part of a daily backup apparatus, but I don't seem to be able to get access to this directory. I've tried changing the application manifest to run ...

Inspection of Insert Statement When Using LINQ's SubmitChanges

Hi. I want to see what my insert statement would look like as if I was wiring up an text-based ADO.NET command. How do I do this? I have been following the below link: http://damieng.com/blog/2008/07/30/linq-to-sql-log-to-debug-window-file-memory-or-multiple-writers And have added the DebugTextWriter class to my project. So, now, i...

I am looking for a System level activity logging application for Symbian

Is there any free application available for logging all the activity ( both user initiated and system initiated ) on Symbian along with state of various resource variables on device (like Memory , I/O, Media player etc ). I want to use it to examine if there is any dependency /conflict /resource constraint when multiple Application ...

How to list all the log for current project in git ?

I use git log, but I find it can only list logs under current branches, but I want to list all the loges for all the branches and sort by modified date, is that possible ? How to do that ?Thanks in advance ! ...

Export Failed Element Log(s) after deliver?

When a deliver has been performed I can rightlick an entry in the GUI version/element log and it displays me a popup with the element log. Quite handy. I now have a delivery with about 25 failed ones and a couple of hundred OK's. Sadly I can not sort on the column "status" so I have to make screenshots wherever I find a [!] to sit toget...

Java/Tomcat standalone, how to log/access all the HTTP GET requests

I'm running Tomcat in standalone mode. The "standalone" part is very important: I am not going to install Apache in front of Tomcat. In my question here, about how to implement a "web bug", I got a great answer: http://stackoverflow.com/questions/3011876 However the answer states: In your access logs, you can count for your jpg ...

How to concatenate all commit messages from subversion into one text file with no metadata?

I would like to take all the commit messages in my subversion log and just concatenate them into one text file, preferably using the svn command line on windows. Each commit message has this format: - r1 message - r1 message - r1 message What I would like is something like: - r1 message - r1 message - r2 message - r2 message - r3 mes...

Is there a "vim runtime log"?

Sometimes I try a customization/command in my vimrc. Everything seens to be correct, but it just doesn't work. It's difficult to know what's happening when vim starts, and know which command failed or not, so it's really difficult to debug what can be causing a problem in my vimrc. It's a trial-error approach, which is time consuming an...

Activeobjects ORM logs disable.

How to disable logs in ActiveObjects ORM? ...

C++ Logger-Should I use an ordinary xml parser?

I'm working on a logging system for my 2D engine, and I'm confused on how I should go about creating/editing the file, and how I should output that file. I've learned that XML is more of a data carrier rather than a data displayer like HTML is. I've read that I can use XML to HTML converters. One method I've thought about is writing cha...

Qt: QTextEdit::setTextFormat(Qt::LogText) does not exist anymore, what else can I use to log?

Hi, I need a text logger in my C++ application, QTextEdit used to have this feature until Qt 3.3 but unfortunately it has been removed. Is there an alternative that I could use? Tanks for your help! ...

Log MySQL Query In Kohana 3

Hi All, I am using Kohana 3. I want to log the MySQL queries being executed by an application. The reason to determine the query of type INSERT,UPDATE and DELETE which are being executed in a process and store them in another MySQL table with date-time for further reference. Can anybody tell how can I achieve this? ...

PHP FTP - Is there a way of seeing if FTP was initiated by PHP?

I have had an attack on my web server where .html files were copied by FTP into a public html directory. The FTP password was very strong. I'm trying to determin whether PHP initiated the FTP transfer. Is there an Apache or Nix log file that can give me this information? Additional information I have FTP log entries which seem to show...

Good C library to parse apache log file

I would like to parse a lot of apache log files with a C library. Who knows a good C library which is optimized for good performance? Thank you for advice! ...