Rewrite configuration structure and more minor changes

This commit is contained in:
Steffen Lange 2019-04-19 21:34:22 +02:00
parent 13ffe0c2c7
commit 5bafe48c82
7 changed files with 124 additions and 83 deletions

View file

@ -19,3 +19,7 @@ void log_warn(const char *msg) {
void log_exclaim(const char *msg) {
syslog(LOG_ERR, "[ERROR] %s", msg);
}
void log_debug(const char *msg) {
syslog(LOG_DEBUG, "[DEBUG] %s", msg);
}