在Servlet中,我在哪里可以查看我的log4j日志?

huangapple go评论66阅读模式
英文:

Where can I see my log4j logs in a Servlet?

问题

我有一个Servlet,我想使用log4j记录消息,就像这样:

private static Logger logger = Logger.getLogger("DownloadServlet.class");
logger.info("Hello");

但是我找不到日志在哪里?它保存在哪里?我正在使用Tomcat服务器。

英文:

I have a Servlet and I wanted to log a message using log 4j, like this:

private static Logger logger = Logger.getLogger("DownloadServlet.class");
logger.info("Hello");

But I cannot find the log anywhere? Where is it saved? I am using a Tomcat server.

答案1

得分: 0

这会在您运行项目时在控制台中记录。
您的代码没有将日志保存到文件中。

英文:

It is logging in your console, while you running the project.
Your code is not saving logs to files.

huangapple
  • 本文由 发表于 2020年4月5日 22:09:45
  • 转载请务必保留本文链接:https://go.coder-hub.com/61043917.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定