Server side SVN + SSH logging
After searching the interwebs for a method on obtaining server side logging capability on SVN over SSH with no success, I decided to do some reverse engineering on how SVN works hopping to get it logging every user action on each repository.
What I’ve found is that every client SVN call to the server via SSH launches svnserve, and indeed there is a svnserve.conf
config file on every repository, unfortunately with no log flag available. Nontheless the svnserve binary accepts the desired log flag, so let’s get creative…
There, you got logging!
What some log rotating? Sure, here you go:
Leave a comment