0
votes
1answer
67 views

How to log NHibernate query?

I have an Asp.Net MVC 4 project in VB.Net, which use Fluent Nhibernate, NHibernate and NLog. I want to log the NHibernate queries. I want to save the query at a table in my DB, but it also can be ...
1
vote
1answer
70 views

Parellel Loop and Nlog

I perform some operations on files in a parallel.for Loop for which a log is created. But I need to know which operation created a particular log-entry. I tried to use the {ThreadID} in my ...
4
votes
2answers
2k views

How do I email errors logged with NLog? [closed]

I am using NLog for the first time, i figured out how to write to a text file, but now i want to send an email to myself. am making the assumption that when you supply SMTP credentials to NLog. The ...
1
vote
1answer
214 views

How to Email an Entire Log File through Nlog

Salvete! nLog for .NET has the capability to send log entries as email. But if we want to send the entire current log file, how can it be done, short of reading the log file into a string and ...
0
votes
0answers
123 views

How to Programmatically Filter Out Messages to a Particular Logger?

Salvete! In an Nlog coded configuration, how can we filter out one loggers based on its name? I want to log everything to the locallogtarget -except what goes to the richtextmessengertarget. I ...
1
vote
1answer
844 views

NLog not Logging in Simple App

I am trying to implement a simple log using Nlog 1.0, using the following code Dim _logger = LogManager.GetCurrentClassLogger() _logger.Debug("Iain") And the following NLog.config. <?xml ...