我正在尝试从 Python 手动将条目写入日志。有没有办法做到这一点?
感谢您的任何见解。
-保罗
如果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')