我在 spring mvc 应用程序中使用 logj4。我正在我的 tomcat 6 服务器上的日志中工作,我收到以下消息:
log4j:WARN No appenders could be found for logger (org.springframework.web.context.ContextLoader).
log4j:WARN Please initialize the log4j system properly.
在 tom cat 服务器上的标准输出文件中。我希望在访问方法和对象时能够看到消息。这就是我使用 log4j 的方式:
class ...
private final Logger logger = Logger.getLogger(getClass());
logger.info("My message here");
出于某种原因,我在日志中没有看到任何消息,并且我看到了上述警告