Tag Archives: logging

Script to find longest running events in log files

While I have found the logging format described in this post to be useful in my scripts, once you get past a few lines, it gets hard to track what took the longest. I wanted to be able to see … Continue reading

Posted in Programming | Tagged , , | Leave a comment

Simple and effective Python logging

I have been using the quite capable logging module for all of my logging in Python programs for some time. After trying a number of different options and formats, I have stabilized my setup into what I will describe below. … Continue reading

Posted in Programming | Tagged , , , | 4 Comments

Handy Alias: Grab latest svn log

I keep having the occasion to view the log comments for the current revision in my SVN repository. This means: Knowing the number of the current revision, Passing this to svn log -r Instead of doing that by hand, I … Continue reading

Posted in CLI | Tagged , , | 3 Comments