mirror of
https://github.com/gechandesu/syslog.git
synced 2026-01-23 15:24:14 +03:00
317 B
317 B
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!')