mirror of
https://github.com/gechandesu/syslog.git
synced 2026-01-23 15:24:14 +03:00
fc0f889ae97cef258dc257b4ac791338136b64ea
Write Messages into System Journal
syslog module is a thin wrapper around syslog C API. Read the
syslog(3)
manual page for details.
Basic usage:
import syslog
mut log := syslog.open()
defer {
log.close()
}
log.send(.info, 'Hello, World!')
Description
Languages
V
100%