I’m maintaining an old asp classic application. It uses Response.AppendToLog as its sole debug logging system. I only debug it on my localhost so the logging files are on my harddrive in the %SystemDrive%\inetpub\logs\LogFiles folder.
I’m looking for a tail-like program that shows these debug messages live. Maybe with a possibility to colour the messages based on a filter.
Update: I’ve started writing my own tail program in python using the info in Recipe 157035. The logging lags behind by a minute approximately. Any ideas on improving it?
I finished it. Now all I have to do is
Response.AppendToLog('#message');where every space or weird character in message is replaced by an underscore. Too bad it lags behind by a minute or so, but it’s better than nothing.