Log4Slack
Log4Slack copied to clipboard
Simple, asynchronous Slack log4net appender.
Bumps [log4net](https://github.com/apache/logging-log4net) from 2.0.3 to 2.0.10. Release notes Sourced from log4net's releases. Address CVE-2018-1285 and improve netstandard 2.0 support Apache log4net 2.0.10 improves netstandard2.0 support thanks to community member @NicholasNoise....
Bumps [log4net](https://github.com/apache/logging-log4net) from 2.0.3 to 2.0.10. Release notes Sourced from log4net's releases. Address CVE-2018-1285 and improve netstandard 2.0 support Apache log4net 2.0.10 improves netstandard2.0 support thanks to community member @NicholasNoise....
So sad to discontinue it. What are the possibility, in near future, to get the 3xPR's through and release a new NuGet? If i can contribute in anyway, give me...
As in issue #19 makes it possible to ignore given types from being logged into Slack.
I have an issue where a ImageProcessor throws errors all the time, I can't rewrite the code for the processor so I'm thinking that it might be a good idea...
Added support for inner exception as in issue #16
Package 'Log4Slack 1.1.10' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.1'. This package may not be fully compatible with your project.
Thanks for a great little utility! I'm missing the inner exceptions in the logging, sometimes they might say more about the error than the actual exception. I've added this little...
I created simple ConsoleApp to test appender: ``` static void Main(string[] args) { var message = Guid.NewGuid().ToString(); log.Debug(message); log.Info(message); log.Warn(message); log.Error(message); log.Fatal(message); Console.ReadKey(); } ``` When I comment `ReadKey` app...