
resources.report.rules.pmd.InvalidSlf4jMessageFormat.html Maven / Gradle / Ivy
InvalidSlf4jMessageFormat
InvalidSlf4jMessageFormat
Check for messages in slf4j loggers with non matching number of arguments and placeholders.
This rule is defined by the following Java class: net.sourceforge.pmd.lang.java.rule.logging.InvalidSlf4jMessageFormatRule
Example(s):
LOGGER.error("forget the arg {}");
LOGGER.error("too many args {}", "arg1", "arg2");
LOGGER.error("param {}", "arg1", new IllegalStateException("arg")); //The exception is shown separately, so is correct.
© 2015 - 2025 Weber Informatics LLC | Privacy Policy