Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-11-28 | treewide: more log_*_errno + return simplifications | Michal Schmidt | |
2014-11-28 | treewide: no need to negate errno for log_*_errno() | Michal Schmidt | |
It corrrectly handles both positive and negative errno values. | |||
2014-11-28 | treewide: auto-convert the simple cases to log_*_errno() | Michal Schmidt | |
As a followup to 086891e5c1 "log: add an "error" parameter to all low-level logging calls and intrdouce log_error_errno() as log calls that take error numbers", use sed to convert the simple cases to use the new macros: find . -name '*.[ch]' | xargs sed -r -i -e \ 's/log_(debug|info|notice|warning|error|emergency)\("(.*)%s"(.*), strerror\(-([a-zA-Z_]+)\)\);/log_\1_errno(-\4, "\2%m"\3);/' Multi-line log_*() invocations are not covered. And we also should add log_unit_*_errno(). | |||
2014-11-06 | journal: adjust audit log messages a bit | Lennart Poettering | |
2014-11-04 | journald: include audit message type number in MESSAGE= string | Lennart Poettering | |
2014-11-04 | journal: also consider audit fields with '-' valid | Lennart Poettering | |
2014-11-04 | journald: don't pass around SO_TIMESTAMP timestamp for audit, which we don't ↵ | Lennart Poettering | |
have anyway | |||
2014-11-04 | journald: suppress low-level audit text prefix in MESSAGE= field | Lennart Poettering | |
Let's make the log output more readable, and the header can be reconstructed in full from the other fields | |||
2014-11-04 | journald: properly decode audit's proctitle= field | Lennart Poettering | |
2014-11-04 | journald: enable audit in the kernel when initializing | Lennart Poettering | |
Similar to auditd actually turn on auditing as we are starting. This way we can operate entirely without auditd around. | |||
2014-11-03 | journald: there's no point in turning on SO_TIMESTAMP for audit sockets, ↵ | Lennart Poettering | |
audit doesn't support timestamps anyway | |||
2014-11-03 | journald: if available pull audit messages from the kernel into journal logs | Lennart Poettering | |