1
0
mirror of https://github.com/ShadowKatStudios/OC-Minitel.git synced 2025-03-16 08:28:38 +11:00
OC-Minitel/syslog/OpenOS/usr/man/syslog

20 lines
480 B
Plaintext
Raw Normal View History

2018-08-10 19:12:34 +10:00
# syslog Library for OpenOS
The syslog library only provides one function, so the library can be called. In addition, the library provides a number of pre-configured event levels:
- syslog.emergency
- syslog.alert
- syslog.critical
- syslog.error
- syslog.warning
- syslog.notice
- syslog.info
- syslog.debug
An example using syslog as both a function and a table:
```lua
local syslog = require "syslog"
syslog("message", syslog.emergency, "service name")
```