-
Notifications
You must be signed in to change notification settings - Fork 36
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
Use logger instead of printStackTrace() #18
Comments
@AzeemJiva Can I pick up this issue please? |
Yes! |
Do we want to use java.util.logging.Logger and allow users to configure log level etc or we are open to introducing something like log4j or slf4j? |
Keeping the number of dependencies down is desirable. @yoroto your thoughts? |
@AzeemJiva I agree. I can start with what is provided in jdk. We can replace it later if we need to. |
@AzeemJiva Yes, we don't want to pull in those big packages, or anything would significantly affect allocation rate. |
Replace all usage of printStackTrace() with a proper logging mechanism.
The text was updated successfully, but these errors were encountered: