red5 - 应用程序日志文件保存在哪里?
我只是想问应用程序日志保存在哪里,所以如果我的类中有这样的代码:
import org.red5.logging.Red5LoggerFactory;
logger.debug("录音显示:{}", conn.getScope().getContextPath());
该文本将写入何处?
提前致谢。
I just wanted to ask where the application logs are kept, so if i had code in my class as so:
import org.red5.logging.Red5LoggerFactory;
logger.debug("Recording show for: {}", conn.getScope().getContextPath());
whwre would this text be written to?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
他们似乎正在使用
org.slf4j.Logger
类。从 this 站点,我认为它应该记录到标准输出或标准错误。但是,我阅读了 API,看起来有一个变量可以控制日志记录级别。您收到任何调试级别的消息吗?
They're using the
org.slf4j.Logger
class, it seems.From this site, I think that it should be logging to standard out or standard error. However, I read the API, and it looks like there is a variable to control logging level. Are you getting any debug-level messages?