对 SLF4J API 的 Lambda 支持SLF4J – 版本 2
在Log4j最新的API中,我们有Lambda支持,我可以轻松管理调试选项。
例:
logger.debug("This {} and {} with {} ",
() -> this, () -> that, () -> compute());
但是对于slf4j/logback,是否有任何选项可以如上所述启用lambda。请让我知道语法。
在Log4j最新的API中,我们有Lambda支持,我可以轻松管理调试选项。
例:
logger.debug("This {} and {} with {} ",
() -> this, () -> that, () -> compute());
但是对于slf4j/logback,是否有任何选项可以如上所述启用lambda。请让我知道语法。