can anybody hint me a good, free Delphi logging framework? It should be easy to use and it should support different "log writers" including plain text, database and network.
相关问题
- Is there a Delphi 5 component that can handle .png
- Is there a way to install Delphi 2010 on Windows 2
- Is TWebBrowser dependant on IE version?
- I want to trace logs using a Macro multi parameter
- Error message 'No handlers could be found for
相关文章
- how do I log requests and responses for debugging
- Android Studio doesn't display logs by package
- Best way to implement MVVM bindings (View <-> V
- Windows EventLog: How fast are operations with it?
- How to force Delphi compiler to display all hints
- Coloring cell background on firemonkey stringgrid
- Stacktrace does not print in Glassfish 4.1 Cluster
- HelpInsight documentation in Delphi 2007
A logger library shouldn't dump the contents synchronously. That will slow down the application. Instead, it needs to buffer the contents and dump them when it is flushed.
It should also be thread-safe and able to dump the contents from different threads. (And preferably be able to log the thread ID as well)
It should also be flexible and able to log multiple output formats.
Here's a library which does all this: loggerpro
I'm a big fan of CodeSite, too, but if you're looking for free, how about OutputDebugString with either the Delphi IDE or DebugView from SysInternals.