Tagged Questions
0
votes
0answers
34 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()
: ...
1
vote
2answers
119 views
How can I show a NLog log in a WPF control?
How can I show a Nlog log in a WPF control? Is there any controls available?
Thanks!
0
votes
1answer
106 views
Simple way to report errors to a user in WPF?
Right now in my app, I am logging all errors with NLog. If the error is level = ERROR, I want to present the user with something, but allow them to continue, if it is level = FATAL, I also want to ...
1
vote
1answer
260 views
WPF-Caliburn.Micro-NLog handle exception on App Domain
Hi I try log expcetion on App Domain with NLog. It is WPF app with Caliburn Micro.
In MEF bootstraper I have this code:
static readonly ILog Log = LogManager.GetLog(typeof(NLogLogger));
#region ...
1
vote
2answers
534 views
Caliburn Micro with NLog - how to use logger and log to XML file
Hi i try use Nlog in with caliburn micro, I have use this tutorial http://buksbaum.us/2010/08/08/how-to-do-logging-with-caliburn-micro/.
Firstt I defined Nloagger class, here is it:
public class ...
1
vote
2answers
268 views
Do I need use logging library? [closed]
I write a wpf app using mvvm pattern and I need to implement logging system.
The log need contain unhandled exceptions and events that I raised manually when something happen.
Also I need to have ...
3
votes
3answers
673 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 ...
0
votes
1answer
246 views
How to set value to NLog.config
I am just wondering how to change the value in NLog.config file from other file configuration for example,
<variable name="logDirectory" value="${basedir}/logs/${shortdate}"/>
I want to change ...
2
votes
1answer
435 views
WPF where to store NLog logs
Is "Environment.SpecialFolder.ApplicationData" suitable for storing an NLog log file in a Clickonce WPF application running under .net client profile?
Needs to support XP upwards.
Thanks
[Update]
...
2
votes
2answers
2k views
How can I use NLog's RichTextBox Target in WPF application?
How can I use RichTextBox Target in WPF application?
I don't want to have a separate window with log, I want all log messages to be outputted in richTextBox located in WPF dialog.
I've tried to use ...
4
votes
1answer
962 views
Proper implementation of NLog and Prism
What would be the best way to implement NLog in my Prism / CAL WPF application. This might be an amateur question, I am a bit new to the whole Prism framework :)
I thought about putting the reference ...