-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please remove serilog dependencies #315
Comments
We are currently going into a freeze on updates to quickbooks library due to issues with serilog. Server Error in '/' Application. |
Quickbooks is not adding version ranges to their nuget package for their dependencies. This has been going on for years now? |
Yes. Years. |
I don't understand why they took a hard dependency on Serilog (and a specific version at that). This is exactly why libraries should code against the M$ ILogger interface, even if it's less ideal than using Serilog directly. This has us unable to upgrade the SDK and we can't pin our version of Serilog to what they are using. |
Depending on your needs, you might want to consider using the community .NET SDK QuickBooksSharp. It has a much lighter footprint and a more modern API up to date with latest .NET practices. Disclaimer: I maintain this library. |
Thanks I will check it out again. I had look at it but the last update was 9 months ago so I wasn't sure if it was still being maintained. Good to hear that it is. |
@clement911 I would check it out, but for us there is already a lot of code using the existing SDK, and don't have the time (or permission) to rewrite all of it to use a different library. |
Is there any update on the request. It stopping us from using the latest version. |
Why is this library using Serilog rather than Microsoft Extensions Logging? If NOTHING else, this should be an optional dependency. |
Still not fixed. What version of this 'Serilog.Sinks.File' dll is expected? |
I had some hope that with 14.6.3.7 dropping recently that we might be able to update Serilog.Sinks.Seq with it, but still stuck 😓 |
I found a workaround that seems to be working for me. It is possible to inject a I had to change my code in two places: where I create a ServiceContext, and where I create an OAuth2Client. var serviceContext = new ServiceContext(realmId, IntuitServicesType.QBO, reqValidator, configurationProvider);
// added this line to inject logger
serviceContext.IppConfiguration.AdvancedLogger = new AdvancedLogger {
RequestAdvancedLog = new RequestAdvancedLog { CustomLogger = Serilog.Log.Logger } };
var oauthClient = new OAuth2Client(clientId, clientSecret, redirectUrl, environment) {
// added this line to inject logger
CustomLogger = Serilog.Log.Logger
} Depending upon your use of the API, there may be more places that this sort of thing is needed. Just FYI, I am using
|
Is this still really a thing and hasn't been fixed yet? |
I honestly think this library is maintained by interns. |
We have been bitten by this again in a recent release. This logging library should NOT be a dependency in your nuget package.
The text was updated successfully, but these errors were encountered: