Reputation: 46591
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 present the user with something, but tell them they need to shut down the app. What is the simplest way to do this? It doesn't need to be anything fancy.
Upvotes: 0
Views: 257
Reputation: 2017
There is a Message Box Target for NLog you may want to look into.
Upvotes: 2