Tagged Questions
2
votes
2answers
71 views
.NET: Logging entry / exit without AOP?
I want to be able to log when code execution enters a method and then exits, I was wondering is anyone has any comments on the best way to achieve this?
I know an AOP way of injecting the logging ...
0
votes
2answers
173 views
Logging Block to NLog
I want to use NLog instead of default Logging Block in Exception Handling Block of Enterprise Library. Anybody have any advice or working example how to do it?
Thanks.
3
votes
5answers
198 views
Logging with backup appender
Is there any .NET logging framework that have ability to switch appender if something is wrong with current one. Actually what I want is following:
If I'm using database appender and when something ...
0
votes
1answer
123 views
does EL Logging have a troubleshooting tool like Nlog internal log?
NLog has an internal log that the developer can use to troubleshoot issues with logging. Does Enterprise Library Logging have anything like that that I can use to figure out why my log messages aren't ...
0
votes
1answer
168 views
Does Logger.Write method in EL has missing overloads? Other logging framework offer these APIs?
I have recently start using Enterprise library 5.0 logging block and have two observations.
My format for logging is timestamp, severity and the message itself. I could not find any overload of ...
9
votes
5answers
6k views
Enterprise Logging Block vs NLog vs log4net
I need to use a logging library in my project and considering between Enterprise Logging Block vs NLog vs log4net. I found some links on the comparison but most of those are quite old and complaint ...
12
votes
2answers
3k views
When should I use Tracing vs Logger.NET, Enterprise Library, log4net or Ukadc.Diagnostics?
How do I choose between standard tracing, Logger.NET, Enterprise Library, log4net or Ukadc.Diagnostics?
Is there a situation where one is more appropriate than the other? ... what would that be? ...
3
votes
1answer
524 views
NLog to Enterprise Library
Using the snippet below which uses NLog how can this be done using Enterprise Library 5.0 Logging?
private Logger _logger;
public NLogger() {
_logger = ...
