summaryrefslogtreecommitdiffstats
path: root/libdaemon/server/daemon-log.c
Commit message (Collapse)AuthorAgeFilesLines
* cleanup: add va_endZdenek Kabelac2012-08-231-5/+7
| | | | Pair va_start with va_end.
* cleanup: use <> for system header fileZdenek Kabelac2012-08-231-1/+1
|
* lvmetad: fix memleaksZdenek Kabelac2012-08-231-1/+6
| | | | Release allocated buffers in daemon_logf, daemon_log_parse
* libdaemon: Draft logging infrastructure.Petr Rockai2012-08-081-0/+143
- logging is not controlled by "levels" but by "types"; types are independent of each other... implementation of the usual "log level" user-level semantics can be simply done on top; the immediate application is enabling/disabling wire traffic logging independently of other debug data, since the former is rather bulky and can easily obscure almost everything else - all logs go to "outlets", of which we currently have 2: syslog and stderr; which "types" go to which "outlets" is entirely configurable