Tag Info

New answers tagged

3

You can create your own nested exceptions to the nth degree. throw new Exception("1", new Exception("2", new Exception("3")));


0

Search for "XAMLParseException" - cause some errors in WPF window constructor. You'll find lots of examples.


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 ...


1

var msg = OperationContext.Current .IncomingMessageProperties[RemoteEndpointMessageProperty.Name] as RemoteEndpointMessageProperty; var address = msg.Address;


0

Well, I spend 2 nights on investigation and solving the issue. Initially I thought that problem related to NLog logging framework so I switched to Log4Net instead. That was easy because I used Ninject.Extensions.Logging. But that didn't helped. Then I updated to prerelease version of Ninject and exception message became more clear: "Can not determine ...


0

In case the above answer is not all tha clear you can check the example <targets> <target xsi:type="Console" name="console" layout="${longdate}|${level}|${message}" /> <target xsi:type="File" name="ErrorLog" fileName="${basedir}/error.txt" layout="${longdate} Trace: ${stacktrace} ${message}" /> ...


0

This method will work even if you have set async="true" (i.e. your target is wrapped by an AsyncTargetWrapper) in your NLog XML configuration: private string GetLogFileName(string targetName) { string fileName = null; if (LogManager.Configuration != null && LogManager.Configuration.ConfiguredNamedTargets.Count != 0) ...


0

One way that I can suggest (never tested though) is to use custom environment variable. The Azure SDK gives you the possibility to define custom environment variables. You can then use XPath to get setting values. Now I wonder whether you can define a variable NLogPath with RoleInstanceValue equals 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 ...


0

Is LogEntry your own class/struct? Maybe you could add a field/property to it to hold the logger type. In your extension method, when you create a LogEntry to send to your ILogger, populate the LogEntry.LoggerType with tyepof(LoggerExtensions). So, your LoggerExtensions class might look something like this (uncompiled and untested): public static class ...


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 ); } ...


0

Take a look at reflectinsight. This comes right out of the box and supplies you with a very nice viewer to boot.


1

I had this problem, and just updated my NLog nuget package to 2.0.1.2 Now I have exceptions coming through to Log2Console just fine.


0

I've used the following config in all my projects and seems to archive just fine: <nlog xmlns="http://www.nlog-project.org/schemas/NLog.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" autoReload="true"> <variable name="LogFileName" value="App"/> <variable name="LogFileExtension" value="log"/> <variable ...


-1

Unfortunately this is not possible. The reason is that the loggers are evaluated from top to bottom, the first one matching will be used, and does below will not be evaluated. In you case this means that when logging anything Raven related the first logger will be used and stops the flow.



Top 50 recent answers are included