4

我正在尝试从 Python 手动将条目写入日志。有没有办法做到这一点?

感谢您的任何见解。

-保罗

4

1 回答 1

2

如果journald您指的是systemd journal,那么对“journald python api”的简单搜索会产生:

https://github.com/systemd/python-systemd

用法

快速示例:

from systemd import journal

journal.send('Hello world')
journal.send('Hello, again, world', FIELD2='Greetings!', FIELD3='Guten tag')
journal.send('Binary message', BINARY=b'\xde\xad\xbe\xef')
于 2013-07-19T14:50:28.600 回答