-
Notifications
You must be signed in to change notification settings - Fork 6
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
Enable logging #38
Comments
Looks like a more neat solution than print to console. Perhaps is the java.util.logging enough for this project? |
Would be nice to avoid external dependencies and do everything we need with built in functionality from java sdk. Pipe dream? 😁 |
Log4j is a preferred choice because it's flexible, fast, and can log to various places. It's a good tool for effective and customizable logging in Java projects. |
If speed is not an issue I agree with @kappsegla. It would be nice to avoid external frameworks. |
Problem Description
Implementing logging in our program. Using either built in logging tools with java.util.logging, or using a logging framework like Log4j
https://www.loggly.com/ultimate-guide/java-logging-basics/
The text was updated successfully, but these errors were encountered: