Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there a .NET logging class that does not rely on XML configuration files? I thought is was possible with log4net but can't find any info.

share|improve this question
1  
Don't know why this is CW. – Chris Marisic Jan 26 '11 at 14:42

2 Answers

It is possible to configure log4net in code. See this example: link.

share|improve this answer
I did not know about NDC so +1 for the link. – Andrew Burns May 1 '09 at 20:56

Loggr: http://loggr.net/go/cloud-service-for-net-logging

Loggr is a hosted event logging service with some cool features. They have a great, fluent logging agent for .Net developers. Loggr can be used without any configuration in web.config as well.

Loggr.Events.Create()
    .Text("Purchase 2 large pillows")
    .Tags("purchase online")
    .Source("jon.doe")
    .Value(35.50)
    .Geo(40.1203, -76.2944)
    .Post()
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.