summaryrefslogtreecommitdiffstats
path: root/lib/log/log.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/log/log.c')
-rw-r--r--lib/log/log.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/lib/log/log.c b/lib/log/log.c
index f32e56ea..e8806619 100644
--- a/lib/log/log.c
+++ b/lib/log/log.c
@@ -51,6 +51,7 @@ static int _already_logging = 0;
static int _mirror_in_sync = 0;
static int _dmeventd_monitor = DEFAULT_DMEVENTD_MONITOR;
static int _ignore_suspended_devices = 0;
+static int _error_message_produced = 0;
static lvm2_log_fn_t _lvm2_log_fn = NULL;
@@ -238,6 +239,16 @@ void init_indent(int indent)
_indent = indent;
}
+void init_error_message_produced(int error_message_produced)
+{
+ _error_message_produced = error_message_produced;
+}
+
+int error_message_produced(void)
+{
+ return _error_message_produced;
+}
+
int test_mode()
{
return _test;
@@ -322,6 +333,9 @@ void print_log(int level, const char *file, int line, const char *format, ...)
if (_log_suppress == 2)
return;
+ if (level <= _LOG_ERR)
+ _error_message_produced = 1;
+
trformat = _(format);
if (_lvm2_log_fn) {