diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-06-01 17:26:16 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-06-01 17:27:16 +0200 |
commit | 213ba152fdf7978773be5b8a72e040584765137f (patch) | |
tree | 3ac3626e097aabbfd7468335b4ce2d2c7d566d47 /src/core/load-fragment.c | |
parent | 0d9243f022d244632b1ab26cfc8b46794b7fc5d6 (diff) |
journal: allow setting of a cutoff log level for disk storage, syslog, kmsg, console forwarding
Diffstat (limited to 'src/core/load-fragment.c')
-rw-r--r-- | src/core/load-fragment.c | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/src/core/load-fragment.c b/src/core/load-fragment.c index 2db1290db8..5494d7bce4 100644 --- a/src/core/load-fragment.c +++ b/src/core/load-fragment.c @@ -637,61 +637,6 @@ int config_parse_socket_bindtodevice( DEFINE_CONFIG_PARSE_ENUM(config_parse_output, exec_output, ExecOutput, "Failed to parse output specifier"); DEFINE_CONFIG_PARSE_ENUM(config_parse_input, exec_input, ExecInput, "Failed to parse input specifier"); -int config_parse_facility( - const char *filename, - unsigned line, - const char *section, - const char *lvalue, - int ltype, - const char *rvalue, - void *data, - void *userdata) { - - - int *o = data, x; - - assert(filename); - assert(lvalue); - assert(rvalue); - assert(data); - - if ((x = log_facility_unshifted_from_string(rvalue)) < 0) { - log_error("[%s:%u] Failed to parse log facility, ignoring: %s", filename, line, rvalue); - return 0; - } - - *o = (x << 3) | LOG_PRI(*o); - - return 0; -} - -int config_parse_level( - const char *filename, - unsigned line, - const char *section, - const char *lvalue, - int ltype, - const char *rvalue, - void *data, - void *userdata) { - - - int *o = data, x; - - assert(filename); - assert(lvalue); - assert(rvalue); - assert(data); - - if ((x = log_level_from_string(rvalue)) < 0) { - log_error("[%s:%u] Failed to parse log level, ignoring: %s", filename, line, rvalue); - return 0; - } - - *o = (*o & LOG_FACMASK) | x; - return 0; -} - int config_parse_exec_io_class( const char *filename, unsigned line, |