Reputation: 1929
I want to configure appender that will send logs to wcf service.
I've already service in the air that can get logs at address "http://localhost:8080" with method 'Get logs(string log);
'
I need help how to configure the appender in order to send logs to this service?
Thanks in advance!
Upvotes: 2
Views: 2133
Reputation: 1929
After some searches, I got it, and it's so easy to implement. So I wrote a post for this with sample code to download available: http://www.codeproject.com/KB/trace/wcf_appender_for_log4net.aspx
Upvotes: 1
Reputation: 13579
I don't know of a built-in one, but you can make your own WCF appender like this guy did (or use his) http://blog.joachim.at/?p=31
Upvotes: 2