Tagged Questions
NLog is a free logging platform for .NET
131
votes
14answers
19k views
log4net vs. Nlog
Anyone have experience for both? How do they stack up against each other?
We are planning on using one of them for logging in an enterprise application.
References:
log4net
nlog
EDIT: We have no ...
45
votes
8answers
7k views
Most useful NLog configurations
What are the best or most useful configurations for logging with NLog? (These can be simple or complex, as long as they're useful.)
I'm thinking of examples like automatically rolling over log files ...
34
votes
15answers
5k views
Preferred logging infrastructure for .Net
What is your preferred logging infrastructure for .Net - NLog, log4net, other? Please, specify why you would use one vs. another (pros and cons).
Edit: I find it really difficult to "accept" an ...
21
votes
7answers
1k views
Why do loggers recommend using a logger per class?
As per NLog's documentation:
Most applications will use one logger per class, where the name of the logger is the same as the name of the class.
This is the same way that log4net operates. Why ...
14
votes
9answers
5k views
How do you log errors (Exceptions) in your ASP.NET apps?
I'm looking for the best way to log errors in an ASP.NET application.
I want to be able to receive emails when errors occurs in my application, with detailed information about the Exception and the ...
11
votes
1answer
3k views
Logging and WCF
I have seen many other questions on logging. Best practices. What logging platform is best. Etc. Here are some links from here on SO with very good discussions on the topic:
logging best practices
...
11
votes
5answers
2k views
Visual Studio - How to remove a reference in Release mode
I'm developing a library for use in other apps and this library has lots of debugging and logging statements thanks to NLog.
Is it possible to exclude the reference to NLog.dll when I switch to ...
10
votes
4answers
1k views
Dependency injection and named loggers
I am interested in learning more about how people inject logging with dependency injection platforms. Although the links below and my examples refer to log4net and Unity, I am not necessarily going ...
8
votes
2answers
395 views
My logging framework is tied to my application forever!
Ok, so I'm looking at NLog. Based on the usage, my application would be tied to the logging framework. How do I overcome this?
Also, when using NLog, I have to write too much monkey-code for every ...
8
votes
1answer
940 views
Add / remove logfiles during runtime in NLog
I'm writing a small file conversion utility. Files get automatically converted when they are dropped into a directory.
I'm using NLog for logging. Besides a central log file which is configured using ...
8
votes
3answers
1k views
AppData For NLog
My NLog targets is like this:
<targets>
<target xsi:type="Console" name="console"
layout="${longdate}|${level}|${message}" />
<target xsi:type="File" name="ErrorLog" ...
8
votes
1answer
1k views
How to make Nlog archive a file with the date when the logging took place
We are using Nlog as our logging framework and I cannot find a way to archive files the way I want. I would like to have the date of when the logging took place in the logging file name.
Ex All ...
8
votes
2answers
4k views
How to get NLog to write to database
I'm trying to get NLog to log to my database log table but to no avail. I'm sure my connection string is correct because it's the same used elsewhere in my web.config. Writing out to a file works ...
7
votes
1answer
169 views
NLogConfigurationException - Invalid cast from 'System.String' to 'System.Uri'
Nlog is throwing an exception now that I have updated from 1.0 -> 2.0.
When NLog.Config.XmlLoggingConfiguration.Initialize is called the following exception occurs:
"Error when setting property ...
7
votes
1answer
424 views
Nlog Callsite information
im using Nlog for logging , i use a wrapper to call log methods , problem is if i tried to print information about the callsite (${callsite}) it prints the wrapper method not the orginal method that ...
7
votes
3answers
1k views
ASP.NET MVC2 + Ninject + NLog (+ shared hosting?) = NullReferenceException
I have an MVC2 app that's based on the Tekpub Starter Site, so it uses Ninject for dependency injection, NLog for logging, and a bunch of other libraries in various places. As far as I can tell ...
6
votes
3answers
257 views
Are there any alternatives to Common.Logging?
We're looking at using Common.Logging in a new .NET project but I'm a bit concerned that the project seems to have become inactive. The homepage was last updated in 2009 and the latest version ...
6
votes
3answers
408 views
decent log viewer that works with NLog
What would be a the best viewer that works well with NLog when I have the following requirements:
I need to view logs offline (files) and online (live)
for offline I need to be able to select and ...
6
votes
2answers
822 views
How can i output NLog stuff to the vs2008 'output' window?
I'm using NLog to log my stuff. I'm trying to send the output to the console (or colouredconsole) ... which i'm hoping would goto the visual studio 'OUTPUT' window for any ASP.NET web site/app/mvc ...
5
votes
1answer
273 views
Ninject.Extensions.Logging.nlog2 - How to?
Browsing the nuget library, i came across Ninject.Extensions.Logging.nlog2. Some googling and trying to figure things out, I can't seem to find how or why you would use this extension.
Is it ...
5
votes
1answer
475 views
A sample configuration for nlog and SQL Server Compact 4.0
I would be grateful if someone could post me a sample nlog.config for using nlog with SQL Server Compact 4.0.
I can output to the console and a file OK. I've tried various dbProviders and ...
5
votes
1answer
342 views
Can NLog v2 be used with Common.Logging
I tried using these together today, and was getting a version mismatch, as it's looking for NLog v1.
Does Common.Logging support NLog v2 yet?
If not, does anyone know if an assembly version ...
5
votes
2answers
458 views
NLog cpu performance issue
I have problem with this method in NLog library: NLog.Targets.Wrappers.AsyncTargetWrapper.ProcessPendingEvents(object state)
It consume too much cpu time. I have long running windows service using ...
5
votes
1answer
982 views
How to get the Stack trace when logging exceptions with NLog?
When I use the default layout with NLog it only prints the name of the exception.
I've been told that the log4jxmlevent layout doesn't prints nothing about the exception.
What layout will help me?
...
4
votes
2answers
139 views
Application logging architecture
I'm writing an ASP .NET MVC3 application and as application is expected to be secure, I need a good enterprise application logging architecture.
So I was seeking over existing loggin frameworks and ...
4
votes
3answers
789 views
Serious NLog Issue - How Thread-Safe is this?
Well,
I have waited for days before deciding to post this issue, as I was not sure how to state this, resutling into a long detailed post. However, I think it is relevant to ask for the community's ...
4
votes
4answers
2k 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 ...
4
votes
4answers
890 views
Capture username with log4net
I currently write all log4net events to a database, and it seems to work just fine. To capture the logged in user account I use this piece of code:
HttpContext context = HttpContext.Current;
if ...
4
votes
2answers
1k 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? ...
4
votes
1answer
434 views
NLog GetCurrentClassLogger() NullReferenceException using StructureMap (Full Trust)
It seems like NLog can't use reflection for GetCurrentClassLogger(), even though my MVC 3 app is deployed in a Full Trust environment on IIS7. I'm using StructureMap 2.6.1 and the problem seems to ...
4
votes
1answer
445 views
Nlog - Generating Header Section for a log file
Just recently got into experimenting with NLog, and it occurs to me that I would like to be able to add header information to the top a log file such as:
Executable name
File version
Release Date
...
4
votes
2answers
505 views
Logging unhandled exceptions using NLog? Should ELMAH and NLog be used together?
I am using ELMAH in my ASP.NET MVC projects and I really like its simplicity. But I needed the ability to log certain events in my code in a log.Info("message") manner. Since ELMAH does not provide ...
4
votes
1answer
734 views
What is the difference between log4net.ThreadContext and log4net.LogicalThreadContext?
log4net provides two different "thread context" objects: ThreadContext and LogicalThreadContext, each of which has a property bag, Properties. ThreadContext has a ThreadContextProperties bag while ...
4
votes
1answer
630 views
Using dependency injection with Nlog
I'm using Nlog as my logger, however I cant seem to find an Ilogger interface in Nlog namespaces unlike log4net's Ilogger interface, do I have to create my own wrapper?
4
votes
1answer
262 views
NLOG to output db.out
I would like to use nLog to output my LINQ to SQL generated SQL to the log file
e.g.
db.Log = Console.Out
reports the generated SQL to the console, ...
4
votes
3answers
1k views
NLog ASP.Net viewer
I am using nLog in a large financial application, but frequently need to bring up the logs of the last hour while the software is running and filter on specific loggers/levels. I want to log ...
4
votes
7answers
8k views
Why won't my windows service write to my log file?
I have a windows service and use nlog for logging. Everything works fine when I run from the visual studio ide. The log file updates with no issues. When I install the service, the service runs ...
3
votes
5answers
51 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 ...
3
votes
2answers
74 views
How to wrap each function in project?
I have tons of functions in my WinForms project and i'm using NLog for logging. I want to have an ability to wrap each function with nlogger.Info("start") and nlogger.Info("end") so i will know in ...
3
votes
2answers
118 views
NLog - how can I encrypt the logged stacktrace in the database
I am using the latest version of NLog ( from nuget ) and I configure it programmatically.
Currently it saves in my database but I would like it to encrypt my stacktrace parameter.
Is there any way ...
3
votes
1answer
85 views
NLog. Change class name
i'm wondering if there is any way to change class name of logger instance at runtime ? i want not to create logger in every class but to inject it via constructor. but after i do it i get in file ...
3
votes
1answer
123 views
Log current page url with NLog
I'm trying to log the current pages URL as part of our NLog layout. I've scoured the NLog layout variables and have come up with nothing.
Does anyone know how to get the current page URL as a ...
3
votes
3answers
568 views
How to use NLog for a DLL
I am trying to implement a simple log using Nlog Refresh 1.0 for a class Library project.
It seems nlog does not create a logfile when it's instantiated from within a dll.
Is there some other way ...
3
votes
1answer
96 views
Log to %AllUsersProfile% folder with Nlog 1.0
I want my logging to go into the %AllUsersProfile% folder (or a subfolder of it...)
I'm using NLog 1.0 and seems like the website wiki has holes in it as they are upgrading their documentation for ...
3
votes
3answers
866 views
Custom NLog LogLevels or multiple loggers per class?
Ok, here's what I really want to accomplish: I'd like to separate my 'normal' logging/auditing from my security logging/auditing. Kinda similar to how the Windows Event Logs split Application Events ...
3
votes
1answer
884 views
Configuring NLog to log exceptions in an XML output?
Currently, we have NLog spitting out CSV files just to prove we have NLog actually logging exceptions.
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" ...
3
votes
2answers
166 views
Suggestions for hosted log server?
I'm looking for recommendations for a hosted service to collect logging information from client applications. The service would preferably be a high-availability service using a cloud infrastructure ...
3
votes
3answers
1k views
NLog: can't write to event log
I can't write to the event log with NLog. I've been able to write to the console and to a file. I've turned on exceptions in NLog and am receiving no feedback from NLog. Here is my NLog.config:
...
3
votes
2answers
355 views
Which versions of NLog work with VS2010 RTM?
Taking a look at NLog, it's unclear what version works with VS2010. It says that NLog 1.0 Refresh works with VS2010 beta but nothing else is indicated. There's an NLog 2.0 that is pre-beta that I'd ...
3
votes
1answer
470 views
Nlog not working in release mode
I am using Nlog to log the exceptions in my asp.net mvc (C#) application.
Nlog is not working in release mode. The same is working when running in debug mode.
What may be the problem? Is there any ...