Tag Info

Hot answers tagged

2

You could use Task.Run(() => throw new Exception()); for example. This will throw an AggregateException which will contain the exception as an inner exception. Invoking things that throw exceptions via reflection will also cause a TargetInvocationException to be thrown containing the actual exception as an inner exception. Using the XmlSerializer to ...


2

I know I'm a year late but I just ran into similar scenario where I needed to provide dynamic control of the logger to users. Fortunately, this is relatively easy with nlog. Here I'm just enabling Trace level logging to an already created Logger but obviously you could do anything you wanted including adding new Targets/Rules or just completely replace the ...


1

If you are mainly interested in using your NLog wrapper but still being able to maintain callsite information, see my answer to an earlier question here: Nlog Callsite information In brief, you can use the NLog Log method and pass the type of your wrapper. Then, if you use the NLog callsite LayoutRenderer, NLog will be able to figure out the callsite ...


1

I found a workaround. While not identical to the solution for just an NLog wrapper, it turns out to be similar. Instead of having the ILogger implementer (the NLog wrapper) simply pass it's own type to NLog, I created an overload that allowed passing it a type from the caller: public void Log( LogEntry entry ) { this.Log( this.GetType(), entry ); } ...



Only top voted, non community-wiki answers of a minimum length are eligible