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.
由于 syslog 错误日志记录在某些 Linux 发行版(如 arch Linux)中已过期,我正在寻找某种方法来记录 systemd 错误,但我找不到任何有关它的文档或资源。如果您知道使用 systemd 进行错误记录,请帮助我。
如果您需要从应用程序中记录某些内容,只需以如下方式打印到 stderr:
#include <systemd/sd-daemon.h>
// some code here
fprintf(stderr, SD_ERR "Some error meassge from the app");
// some code there
如果要在命令提示符下输入消息类型:
$ systemd-journalctl
看到这个那个那个。_ _