-
Notifications
You must be signed in to change notification settings - Fork 76
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
Migrate to slf4j #279
Migrate to slf4j #279
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM. However, there are some places where we have a bunch of empty spaces between variable name and assignment. Not sure if that was on purpose :)
@@ -27,14 +27,14 @@ | |||
* @author Arthur van Hoff, Werner Randelshofer, Pierre Frisch, Daniel Bobbert | |||
*/ | |||
public final class DNSIncoming extends DNSMessage { | |||
private static Logger logger = LogManager.getLogger(DNSIncoming.class.getName()); | |||
private static Logger logger = LoggerFactory.getLogger(DNSIncoming.class.getName()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why so many spaces before the =
? 😅
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That was just copied sources 'as is'. If at some point we will add Java Spotless that would be fixed :)
Slf4j
is a thinner and more commonly used logging abstraction librarylog4j-api
entries and dependencies with correspondingslf4j
analogslog4j-slf4j2-impl
runtime dependencies for examples, tests andsimulator
moduleRelates to #272