如何在C程序中设置日志记录优先级?

时间:2019-04-05 16:42:15

标签: c debugging logging systemd systemd-journald

当前,“ Hello World”始终显示在日志中。 如何防止这种情况,例如如果debug为1,则仅在日志中使用它?

int main(int argc, char *argv[]) {
        int debug = (argc >= 2 && !strcmp(argv[1], "--debug")) ? 1 : 0;
        /* must only appear in the journal, if debug == 1 */
        sd_journal_print(LOG_DEBUG, "Hello World");
        return 0;
}

我在资源受限的系统上,无法负担太多日志记录。

谢谢!

添加:我要提供与Python logging.Logger.setLevelhttps://docs.python.org/3/library/logging.html#logging.Logger.setLevel)等效的内容。

0 个答案:

没有答案