Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以在 Apache Ace 中启用日志记录?如果是,如何?在源代码中,我可以看到 LogService 用于将消息写入日志。但是当我启动 ace devserver 时,我无法找到日志。
LogService 是一个标准的概要服务,您可以使用任何实现来实际记录日志语句。我们使用来自 Apache Felix 的那个,并且有一些 shell 命令可以实际检索日志语句(提示,该命令称为“日志”)。但是,此实现不会将它们写入磁盘。不过,根据规范,您自己也很容易做到这一点。存在可供读取的 LogReader,您可以将自己注册为 LogListener。