2013-10-26 37 views
0

由於系統日誌錯誤日誌記錄在某些Linux發行版(如arch Linux)中過期,我正在尋找一些方法來記錄systemd的錯誤,但是我找不到任何關於它的文檔或資源。如果你知道使用systemd記錄錯誤,請幫助我。需要systemd錯誤日誌記錄文件

+0

_Google_不是一個糟糕的地方。嘗試像_Replacement for systemd錯誤日誌Linux_的新版本 – ryyker

回答

1

如果您需要登錄您的應用程序的東西只是打印到標準錯誤的方式,如:

#include <systemd/sd-daemon.h>

// some code here

fprintf(stderr, SD_ERR "Some error meassge from the app");

// some code there

如果你想命令提示符下的消息類型:

$ systemd-journalctl

thisthatthat