Relative Content

Tag Archive for logging

tail-like view on HTML logfiles

I’m working on an application that creates HTML log files. I’m tired of having to manually reload and scroll to the bottom in the browser to see the latest entries.

Logging in JSON Effect on Performance

I see more and more articles about logging in JSON. You can also find one on NodeJS blog. Why does everyone like it so much? I can only see more operations getting involved:

Exception Handling Frequency/Log Detail

I am working on a fairly complex .NET application that interacts with another application. Many single-line statements are possible culprits for throwing an Exception and there is often nothing I can do to check the state before executing them to prevent these Exceptions.

Strategy for clients to retrieve real-time log from HTTP server

I have an HTTP Server Service application which has its own logging mechanism. It’s written in Delphi. I would like to provide a way for multiple clients to connect to this service and get a real-time update of the log. The log in the service moves rather fast, there’s a lot of things to log. There may be up to 50 messages within 1 second at times. The existing log which is already implemented is not saved, it’s only kept in the memory of the server service – where I will need to distribute it to any client which needs it. Once all clients have a log message, it should be deleted.