-
Notifications
You must be signed in to change notification settings - Fork 176
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
Remove logback dependency #155
Conversation
Let the users of Java-OCA-OCPP choose which logging to use.
Updated the versions in pom.xml files |
Hi @sandeepmattepu , Thanks for your pull request. I don't know much about logback, but I can see the logback was included in #39 by @eupakhomov. I don't know if he has any comments? Am I right in assuming that removing the logback does not break anything, since the logging is done via the wrapper interface? Sincerely, |
Hi Thomas, All the logging in your code base is done using slf4j. slf4j is logging interface and it allows users to plug in whatever logging framework they want to use at deployment time. Please see the "Files changed" tab, because I have made the scope of logback dependency to test for ocpp-common (pom.xml). When I have packaged the project (i.e
I have fixed this by adding logback to both OCPP-J and ocpp-v1_6 with scope as test. Now Best regards |
Thanks for your contribution @sandeepmattepu. |
Sorry for being late to the party :) |
Let the users of Java-OCA-OCPP choose which logging to use.