NLog is a free logging platform for .NET
1
vote
2answers
148 views
NLog File target and keepFileOpen flag
A FileTarget object in NLog has a property (bool) called "keepFileOpen".
By default this property is set to false, meaning that each log event will open the file, write in the file and close the file.
...
0
votes
0answers
20 views
+50
NLog and final rules
Very often I want to exclude logging from a specific chatty logger up to a certain level. Unfortunately, the first of the following rules is final for all levels of that logger, so that the second ...
1
vote
3answers
46 views
Any “real-life” nested exceptions that are easy to intentionally cause in C#? [closed]
I'm playing around with improving my error handling, and also learning nLog. I'd like to be able to cause some "real" errors to test what my error handling is doing. Are there any that are easy to ...
17
votes
1answer
7k 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
...
0
votes
0answers
8 views
Nlog throws Type load exception
I installed Nlog.MongoDB using NuGet and I'm using the connection string in config file for connecting it to mongodb. Nlog and NLog.Mongodb assemblies are added to bin and build shows no error. But it ...
0
votes
0answers
23 views
NLog and Windows Phone 8
I'm trying to develop a Logger component for my WP8 application using NLog, but I'm having some trouble writing to the log file.
Since the log file is in the phone's Isolated Storage, how can I point ...
5
votes
6answers
3k views
logger wrapper best practice
I want to use a nlogger in my application , maybe in the future I will need to change the logging system .
So I want to use a logging facade .
Do you know any recommendations for existing examples ...
0
votes
1answer
30 views
Logging IP Address in WCF Service
I'm using NLog in my WCF service and would like to log the caller IP-Address.
I've tried using the aspnet-LayoutRenderers (${aspnet-request:serverVariable=remote_host}, ...
4
votes
1answer
684 views
NLog Failing on Release Mode in IIS7
EDIT: As Kirk Woll correctly pointed out, the issue is NLog, not with NInject. So let me rephrase the issue:
EDIT2: Now that I knew it was NLog + an IoC problem, I found the solution at ASP.NET MVC2 ...
1
vote
2answers
2k views
NLog does not creates log file
I am trying to add logging to application running on mobile device with Windows Mobile 6.1. � .NET Compact framework 3.5. using NLog.
I have appropriate version of NLog distribution installed.
...
0
votes
2answers
273 views
Logging to sepecific event source using NLog
I can able to log windows event source using NLog.
But what i want is to write a specific event source: such as : MyEventSource
My config is:
<?xml version="1.0" encoding="utf-8" ?>
<nlog ...
1
vote
1answer
56 views
Configuring file logging in Azure to write to a specific LocalStorage defined in LocalResources
I have logging setup with NLog using nlog.config that is pointed to by web.config. In this nlog.config file I need to place a line like this:
fileName="ApplicationLog.txt"
I want the log entries to ...
4
votes
2answers
720 views
How to get path of current target file using NLog in runtime?
I use NLog with next configuration:
<targets>
<target xsi:type="File" name="f" fileName="${basedir}/logs/${shortdate}.log"
layout="${longdate} ${uppercase:${level}} ...
1
vote
3answers
1k views
reconfiguring NLog programmatically
This is my first time using the NLog package for logging but so far its been great to work with.
In my scenario I need to initialize my NLog LoggingConfiguration settings programmatically rather ...
0
votes
2answers
41 views
Can NLog preserve callsite information through c# extension methods?
EDIT: While similar, this is not the same as the questions about using an NLog wrapper. Extension methods add another level of indirection which makes even a proper wrapper report the wrong callsite
...
0
votes
1answer
37 views
NLog namespace.name from other class
Currently i have LogWrapper class which initializes NLog and sends to it Info/Debug/Warning and so.
So each method in other class starts from
LogWrapper.Informational(string.Format(" {0} starts ...
2
votes
2answers
151 views
Using .NET Trace and then NLog or log4net etc, as a listener
I would like to avoid writing my own generic logging interface, and rather use built in Trace funtionality, which to start with doesn't require any logging library. Before I address logging libraries, ...
3
votes
5answers
976 views
How to log exceptions with network targets in NLog
I am using the NLog logging framework and am trying to get exception and stacktrace information showing up in any UDP logger appliaction, such as Sentinel and Log2Console, but can only get the log ...
2
votes
1answer
82 views
nlog configuration - Time-based file archival doesnt work
I have followed the example here and defined a Time-based file archives in my IIS as follows
<nlog autoReload="true" throwExceptions="true" >
<targets async="true">
<target ...
0
votes
2answers
36 views
Send ALL messages to one log file, and RavenDB logs to a different log file
This sounds trivial, but I somehow cannot manage to do it. I have the below NLog.config
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" ...
8
votes
1answer
3k views
NLog time formatting
How do I write a layout for NLog that outputs time with milliseconds like this 11:32:08:123?
I use ${date:format=yyyy-MM-dd HH\:mm\:ss} but I need more time precision in my logs.
2
votes
1answer
48 views
Is it possible to have more Loggers in ServiceStack for the same AppHost?
I'm creating a Plugin for ServiceStack that contains certain services. However, I want these services to Log to another DB (in my case) that the other services in the AppHost.
Is it possible to ...
2
votes
0answers
68 views
Using NLog's MappedDiagnosticsContext with ServiceStack
I'm using NLog with my Servicestack service. I'd like to use NLog's MappedDiagnosticsContext to append a variable to each log entry. In my case, I'd like to generate a unique identifier for each ...
1
vote
3answers
86 views
make NLog.config file load the file from (d:\dev) instead of “\bin\debug\”
I used Nlog for logging purpose in a particular DLL. The DLL is then used in another application (it is loaded dynamically using System.Reflection.Assembly.LoadFrom(path + a.dll)). I manually placed ...
0
votes
2answers
402 views
Chainsaw doesn't work on localhost
I use Log2Console to view remote logs. My logger is NLog. My config looks like this:
<target name="log_main" xsi:type="Chainsaw"
address="udp://localhost:12345"/>
When I run both logs ...
1
vote
1answer
71 views
NLog does not write to a target file with filename containig dots
When starting my windows service with "NT AUTHORITY\NETWORK SERVICE" credentials I experience a strange issue with NLog: it simple does not log anything to the file target if the filename contains ...
1
vote
1answer
124 views
Web Role logging - Nlog - accessing config file
Early in a web app project, I decided to use Nlog as my logging solution and really like the idea of just making calls to a logger class in my code and then decide at run-time what and where to log. ...
2
votes
2answers
70 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
1answer
30 views
NLog Only shows in RichTextBox the first time
I have a winform with a Rich Text box on it (LogView) and my configuration is set to log to that text box. When I open the LogView from another form, then start logging everything works wonderful the ...
0
votes
1answer
21 views
What is nLog's version of log4net's %property
With log4net I could do
log4net.ThreadContext.Properties["custom1"] = "value";
log4net.ThreadContext.Properties["custom2"] = "other value";
And inside the config file I could just put
...
0
votes
1answer
37 views
Caliburn.Micro modify logging level
I am using Caliburn.Micro and NLOG.
I have build my logging according to this sample:
http://buksbaum.us/2010/08/08/how-to-do-logging-with-caliburn-micro/
This works well and as expected. But ...
1
vote
0answers
29 views
ASP.net nlog create time wise file
I need to create file date wise, though folder is creating now.
But I need to put date wise file in run time folder
String logfile = t.FileName.ToString() + "/" + LoginID + ...
1
vote
1answer
22 views
NLog filter based on time of the day
I am trying to use NLog conditions to filter messages that are not generated at certain time
the following is my sample
<logger name="*" minlevel="Info" writeTo="InfoMail" >
<when ...
4
votes
1answer
273 views
How to use NLog Config with ServiceStack logging?
The basic wire up seems straight forward but, I'm having difficulty understanding how to configure NLog as I might normally. Given the following setup, how would I set the configuration in order to ...
0
votes
1answer
101 views
Asp.net MVC Exception logging only gets page exception
I've got a filter wrapped around exceptions in my .net MVC code. It happily logs the exception, but almost always logs a variation on the same exception.
Error executing child request for handler ...
0
votes
1answer
32 views
NLog Email Target with High Priorty/Importance
I've recently changed the Email Target log level up one level from Error to Warn. This is to capture some important user actions which aren't Errors on an application level but user input errors, ...
1
vote
1answer
80 views
Nlog Async and Log Sequence
In my nlog configuration, I've set
<targets async="true">
with the understanding that all logging now happens asynchronously to my application workflow. (and I have noticed a performance ...
0
votes
1answer
47 views
global.asax nlog
I am trying to log the end of a web application(with nlog) and I try to do it in Global.asax Application_End(). Unfortunately the application domain is not available there anymore, and nlog fails ...
0
votes
1answer
107 views
NLog FileTarget wrapped with BufferingTargetWrapper fails to write log if there is a delay
I may have stumbled across an issue with NLog, but thought I would check here first for an answer:
To recreate the issue I cloned the NLog source so I could add a delay to cause the problem. Once ...
0
votes
3answers
123 views
how do i format my nLog layout
I have my nLog layout like below
fileTarget.Layout = "${date} ${message}";
In My code, i am logging like following
logger.Info("ORDER UPDATE",order.Name,order.Instrument,order.OrderState);
...
0
votes
0answers
30 views
Nlog doesn't print messages on application close
All ViewModel classes inherit from a base class:
public abstract class ScreenBase : ViewModelBase, IScreen, IDisposable
{
protected readonly NLog.Logger _logger;
protected ScreenBase()
: ...
2
votes
1answer
79 views
NLog Extended AspNetBufferingWrapper not working
I have the following target in my web.config using the AspNetBufferingWrapper wrapper of NLog Extended
<wrapper-target type="ASPNetBufferingWrapper" name="aspNetBuffer">
<wrapper-target ...
2
votes
1answer
125 views
NLog doesnt write to file
i try to test NLog performance (latest version) with with settings:
<?xml version="1.0" encoding="utf-8" ?>
<nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" ...
4
votes
3answers
2k views
NLog ASP.Net viewer [closed]
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 ...
9
votes
4answers
2k views
decent log viewer that works with NLog [closed]
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 ...
0
votes
1answer
58 views
NLog not generating SOAP when using WebService target in VS 2012, Windows 8
I can't seem to get NLog to work properly on my console application. I'm running VS 2012 on a Windows 8 machine. I've targeted the project to use 4.0 Framework.
Using fiddler, I can see that it is ...
1
vote
1answer
53 views
how to change error logging location without modifying code in C# application?
I used Nlog for logging exceptions in my C# windows application and had a file called LogConfig.cs which has all the details about the location (path) and file name where to store these exceptions.
...
3
votes
3answers
620 views
How can I use a RichTextBox as a NLog Target in a WPF application?
I read the following posts but neither helped to just get the same efficient way of printing logs from NLog onto a RichTextBox control target as in Winforms.
How can I use NLog's RichTextBox ...
1
vote
1answer
49 views
Excluding specific loggers using a rule in nlog programmatically
I am looking at a way to implement the following logging rule programmatically.
<logger name="Name.Space.*" minlevel="Debug" maxlevel="Error" final="true" />
I can use the following to set ...
1
vote
2answers
91 views
Suggest design: almost every object in app has loggger
I'm writing an application. I use NLog for logging. In this application almost every object can write to log. I define protected member for that:
protected Logger logger;
protected virtual Logger ...




