我们有一个REST API,我们正在使用slf4j和logback。虽然它可能听起来很愚蠢,但我们希望使用API的响应从每个请求返回部分日志。我可以使用logback / slf4j来提取一个请求中发生的所有事件吗?
由于
编辑: 只是试着做一个我想要的简单例子。
private Logger logger = LoggerFactory.create("MyLogger");
private Response myApiMethod(){
// Some code here
logger.info("Something cool happened")
// Some code here
logger.error("Something bad happened")
// todo: Here I want to extract the two log events above
// (of course I dont what happened in my code so I need a generic solution)
}