logs

SharePoint QuickLaunch and TopNavigationBar dissapearing

I am completely puzzled with this: I have a custom SharePoint site with QuickLaunch on the left and Top Navigation Bar (which are of course visible by default). This custom site has several sub-sites, which all inherit navigation from the root site. Everything works fine, but after application pool recycle both menus on the left and o...

How to improve the throughput of request_logs on Google App Engine

Downloading logs from App Engine is nontrivial. Requests are batched; appcfg.py does not use normal file IO but rather a temporary file (in reverse chronological order) which it ultimately appends to the local log file; when appending, the need to find the "sentinel" makes log rotation difficult since one must leave enough old logs for a...

iPhone app crash logs

Hi Everyone, Can we create and get application crash log from iPhone? If yes then, is the result which we will get will be useful? Thanks, Aashutosh ...

Excel VBA - Parse Server Logs

heya, We have a small project that involves automatically parsing some server/mail logs (among other things). Now, Plan A was to just hack together some Python and Django to do this properly grins, but I got veto-ed and the solution has to be pure-Excel, as it's believed that will be more portable. 1. Importing tab-separated file Our ...

Application for viewing coldfusion logs

Straighforward question really Wondering if there was an application specific for handling coldfusion log files. At the moment I am opening them in notepad to view the details, but wondered if there was another solution Many thanks ...

Append all logs to /var/log

Application scenario: I have the (normal/permanent) /var/log mounted on an encrypted partition (/dev/LVG/log). /dev/LVG/log is not accessible at boot time, it needs to be manually activated later by su from ssh. A RAM drive (using tmpfs) is mounted to /var/log at init time (in rc.local). Once /dev/LVG/log is activated, I need a good w...

Using log analysis tools during software testing?

Do you think analyzing generate logs during testing cycles can increase quality? ...

Infinite loops from IIS6 log

Hi How to find out web request infinite loops from IIS6 log? Any help, greatly appreciated -Jyothish ...

Rails logger and colors

Hey. How can I create a log where part of a string is colorized (aaa)? Rails.logger.info "Color1: aaa Default bbbbbbb" Thx. ...

Is there a sample set of web log data available for testing analysis against?

Sorry if this isn't strictly speaking a programming question, but I figure my best chance of success would be to ask here. I'm developing some web log file analysis algorithms, but to date I only have access to a fairly small amount of web log data to process. One algorithm I want to use makes some assumptions about 'the shape' of typic...

Editing the Subversion Logs

A developer of ours tends not to specify messages when committing his code, I know I could jump up and down and force him to do so from here on in, but how do I deal with the previous commits. I'd very much like to go in and edit the messages so that they are descriptive of what they do. How might I go about doing this? ...

Exporting Subversion log to CSV

Is there a simple way to export the subversion logs to a CSV file? I want to use them to approximate my hours spent on a project and doing so in an spreadsheet would be easy. Thanks. ...

Parsing raw apache logs

I need some php code for parsing raw apache logs. In particular, I want the number of times mode=search and the term used for searching. Here is an example: 207.46.195.228 - - [30/Apr/2010:03:24:26 -0700] "GET /index.php?mode=search&term=AE1008787E0174 HTTP/1.1" 200 13047 "-" "msnbot/2.0b (+http://search.msn.com/msnbot.htm)" 212.81.200...

How to enable logs for sitemesh

Is ther any form to enable logs for sitemesh ? I already put this in the log4j configuration but it doesn't work <!-- Appenders --> <appender name="console" class="org.apache.log4j.ConsoleAppender"> <param name="Target" value="System.out" /> <layout class="org.apache.log4j.PatternLayout"> <param name="ConversionPat...

Bash edit file and keep last 500 lines

I am looking to create a cron job that opens a directory loops through all the logs i have created and deletes all lines but keep the last 500 for example. I was thinking of something along the lines of tail -n 500 filename > filename Would this work? I also not sure how to loop through a directory in bash Thanks in advance. ...

Is there a way to access Skype IM logs?

I tried looking in C:\Users[name]\AppData\Roaming\Skype and I found a folder called "chatsync" with some mysterious folders with files ending in .dat. I'm almost certain that these are the chat logs but I don't know a way to properly open these files (notepad shows gibberish mixed with English words). I'm not trying to do sleuthing, ju...

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! ...

How to include the server name in the filename of an apache log?

Hi - I want to configure apache so that the access and error logs generated from apache include are named as follows: <server-name>_access_<timestamp> <server-name>_error_<timestamp> I have the timestamp part figured out using rotatelogs: CustomLog logs/access_log combined CustomLog "|bin/rotatelogs -l /var/logs/access_%Y-%m-%d 8640...

how to roll Tomcat 5.5 / 6 main logs

hi im using tomcat as servlet container for my web app , now im controlling my web app logs with log4j and its has its own log4j jar and its own log4j configuration file but now i need to control the main tomcat logs (Catalina.out for example) . i need to roll then by size and control its debug level how can i do that without adding l...

c# SharpSVN, how does one get a copy of specific revision files?

Hello, I was looking for something in SharpSVN that will do the equivalent of "Save revision to..." in the TurtoiseSVN GUI. I have been trying to find out how to do this with no luck. Currently I am looking at: Note: logentry is a SvnLogEventArgs after I called client.GetLog(uri, arguments, out logitems); foreach (SvnChangeItem svnChang...