Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在我的应用程序中使用 log4j,但我担心在日志中输入了错误数量的参数,例如:
logger.info("%s %s %s", str1, str2); logger.info("%s", str1, str2);
关于某些工具的任何想法可以帮助我弄清楚吗?
为此创建解析器似乎不太直接
您可以尝试使用Findbugs。它具有检查格式字符串和比较参数类型的规则。