Logger

  • Thread starter Thread starter Aleksey
  • Start date Start date
A

Aleksey

Hi, all!

I need create log file in my project. Is there any standard way to do that,
or is there any good logger class you know?

Thanks a lot
 
Aleksey said:
Hi, all!

I need create log file in my project. Is there any standard way to do that,
or is there any good logger class you know?

System.Diagnostics.Trace

?

Sergei
 
I like DotNetLog from the Object Guy:
http://www.theobjectguy.com/dotnetlog/. It is a good balance of a low
learning curve, easy implementation, and enough functionality to get
the job done. The API makes sense, too. If you are going to use other
parts of the Enterprise Library from Microsoft, then you should look at
that framework. I have found it much more complex without any added
benefits (for my applications).
 
Hello
We create a singleton logger component and which writes to the log only once.
let me know if u are interested
 
Back
Top