From b1e90ec515408aec2702522f6f68c4920b56375b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 15 Feb 2014 18:13:46 -0500 Subject: Pass log config from systemd to systemd-shutdown If PID 1 debug logging is enabled, it is nice to keep those settings when switching to systemd-shutdown binary, independently of whether this was done through /proc/cmdline options, or through runtime manipulations. --- src/shared/log.c | 8 ++++++++ src/shared/log.h | 2 ++ 2 files changed, 10 insertions(+) (limited to 'src/shared') diff --git a/src/shared/log.c b/src/shared/log.c index ee20921f7..3e48b3ccc 100644 --- a/src/shared/log.c +++ b/src/shared/log.c @@ -927,10 +927,18 @@ void log_show_color(bool b) { show_color = b; } +bool log_get_show_color(void) { + return show_color; +} + void log_show_location(bool b) { show_location = b; } +bool log_get_show_location(void) { + return show_location; +} + int log_show_color_from_string(const char *e) { int t; diff --git a/src/shared/log.h b/src/shared/log.h index 6a0f6735c..794af7be6 100644 --- a/src/shared/log.h +++ b/src/shared/log.h @@ -52,7 +52,9 @@ int log_set_target_from_string(const char *e); int log_set_max_level_from_string(const char *e); void log_show_color(bool b); +bool log_get_show_color(void) _pure_; void log_show_location(bool b); +bool log_get_show_location(void) _pure_; int log_show_color_from_string(const char *e); int log_show_location_from_string(const char *e); -- cgit v1.2.3