I have a very simple WCF Workflow Service project with just 1 xamlx in it. XAMLX is also very simple with one receive receive activity and then calling an other xaml workflow.
Here is xamlx service:
My question is how can I configure Log4net in my xamlx service so that all the unhandled errors generated by subsequent Workflow can be logged to Event Log?
As I couldn't find any method which automatically logs all the unhandled errors. I have solved my problem by adding Try/Catch activity and adding some code activities to log the error.
To configure the Logger I added this
[assembly: log4net.Config.XmlConfigurator(Watch = true)]
to assembly.cs and then created 2 code activities.One to get the logger:
Second to Log the error:
My Updated xamlx looks like below:
If anyone have any other better option, then please let me know. Thanks