1
vote
3answers
90 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 ...
1
vote
1answer
85 views

Why can't NLog find my log target?

I'm having trouble running a program that uses NLog. I'm getting an exception during initialization that ends with: ---> NLogConfigurationException: Exception occurred when loading configuration ...
1
vote
2answers
66 views

Log with NLog to available drive?

Is it possible to configure NLog to write logs to d:\logs if d: exists, and if d: does not exists then log to c:\logs instead?
2
votes
1answer
89 views

Overriding/merging standard programmatic configuration with config file section

We have a standard set of conventions that we follow for logging from our various applications, and it is sensible to package this configuration as by-code configuration and include in a common ...
1
vote
2answers
325 views

Azure Worker Role configuration issue while using SlowCheetah with custom config

We are using Nlog as logging tool with our Worker Role of Azure app. It requires NLog.config file. We installed "SlowCheetah - XML Transforms", and have two Debug/Release transforms). Solution does ...
0
votes
0answers
41 views

How to handle multiple NLog configurations

I wrote a host that can load multiple plugins. Each plugin shall have its own NLog configuration. A separate file for each plugin is preferable. My first idea was to read text files associated with ...
1
vote
1answer
538 views

NLog Configuration API: Using Layouts stored in variables

My app creates a log for the application itself, so record when it was activated, and what happened at an application level. The application is centered around 'profiles' - the user loads a profile ...
0
votes
2answers
570 views

How to set NLog's fileName to the process start date?

I tried <target name="txtFile" xsi:type="File" fileName="${date:format=yyyy-MM-dd HH-mm-ss}.txt" layout="${longdate} ${level} ${message}"/> but it creates a new file ...
1
vote
1answer
1k views

Having NLog loggers with different configuration

In NLog is possible to create multiple loggers with different configuration? I have a component that every time that is instanced must log all events to a different file that is related to the new ...
2
votes
1answer
383 views

Force NLog to create a new log folder for year, month and day

How can I force NLog to write logfiles using this pattern "${yyyy}/${MM}/${dd}/log${yyMMdd}.${####}.txt"? Create a new directory for each year, month, day and have the filenames contain the time and ...
1
vote
1answer
152 views

How can I define the location of NLog file in code?

Is there a way to define what config file NLog is supposed to use directly using c# code?
1
vote
1answer
242 views

NLog serializing programmatic configured configuration object to an NLog.config file

I want to be able to read an NLog configuration file from disk using the XmlLoggingConfiguration object. I then make changes to that object, e.g. AddLogLevel(blah). I then want to serialize that ...
1
vote
3answers
1k views

How to include config file in WSP?

I use NLog for logging and now I'm trying to also use it for my SharePoint solution. How do I instruct WSPBuilder to include NLog.config in WSP and place it in the same folder as solution dll? EDIT: ...
2
votes
2answers
817 views

How to apply different layouts to the same target in NLog?

NLog allows me to use SplitGroup to log my messages to several targets. I'd like to use this feature to log each message to a common, user-specific and date-specific logs at once: <variable ...
1
vote
3answers
954 views

What is the best way to centralize logging with NLog?

I have been assigned a project with a lot of poorly written code that is based around SharePoint. It consists of about 15 subprojects, some of them being windows services, some web services, some ...
3
votes
2answers
2k views

How to log to multiple targets using NLog?

I am using NLog and I want to log to RichTextBox and File at the same time. And I want to configure the Logger programmatically, not with xml config file. The following code only logs to the last ...
1
vote
1answer
386 views

Is there any way to do a conditional in a NLog layout?

I'm trying to create a NLog layout config like so: layout = "${callsite} > ${message} (${exception:format=tostring})" The output for this layout is (when I test it): TestProject.Program.Main ...
1
vote
1answer
983 views

How to add target of Nlog to a specific textbox control, so the log messages will be shown in that control

I have used following config of NLog to add the log text to control of specified Name on specified form. <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" ...