Open rosieks opened 8 years ago
I've opened #15 regarding this issue, but the author is not responding :<
Hi @all sorry for late response, it is merged and will be pushed soon, @shoftee thanks for your contribution 👍
I think this could be closed with the release of 2.0.0-rc
@rosieks @shoftee @304NotModified Can you verify its working now in your projects with current versions of the NuGet packages?
ILogger
interface has unfortune methodvoid Error([Localizable(false)] string message, Exception exception)
. It's fine when I passException
class, but when I pass any other exception C# compiler choose different method to use:void Error<TArgument>([Localizable(false)] string message, TArgument argument)
.The effect is that exception details are not logged. I suggest to change order of parameters and deprecate original method.