Good, free Delphi logging framework

2019-02-01 08:02发布

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.

8条回答
再贱就再见
2楼-- · 2019-02-01 08:43

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

查看更多
叼着烟拽天下
3楼-- · 2019-02-01 08:51

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.

查看更多
登录 后发表回答