PDA

View Full Version : Logging class



tanffn
18-05-2008, 05:26 PM
I’ve been quite happy with Dominique’s (SDL)logging unit, but now I need something a bit stronger.
It should be threaded (and thread safe) and allow diagnostics/searching.
For speed it doesn’t need to save to file, just keep the record in mem and dump it when requested.
But keep the sprit old logger style, MyLogger.Add(self, ‘My message’, OperationType)

Googling I only found EstLogger (http://estlogger.sourceforge.net/), which looks very nice but the project died about 3 years ago and its incomplete..
I also found a few expensive ones..

Do anyone knows about a free/OpenSource logging tool?

arthurprs
18-05-2008, 09:21 PM
i writed my own, veryyyyyyy simple, but thread safe :)

tanffn
19-05-2008, 06:30 AM
After a good night sleep I tried codeproject instead of google and look what I found!
TraceTool 10.1: The Swiss-Army Knife of Trace (http://www.codeproject.com/KB/trace/tracetool.aspx)

(its even a Delphi project)

Robert Kosek
19-05-2008, 03:06 PM
After a good night sleep I tried codeproject instead of google and look what I found!
TraceTool 10.1: The Swiss-Army Knife of Trace (http://www.codeproject.com/KB/trace/tracetool.aspx)WOW. :o

That will really come in handy for me in the future. Thanks for finding it, Tanffn.

chronozphere
19-05-2008, 03:32 PM
i second that. Thanx for digging up that one. ;)

tanffn
19-05-2008, 03:57 PM
You're welcome :)
I already integrated it in my project, very easy to use (including Delphi demo app and documentation) and quite powerful.