×
Close
The permissions on this repository are being updated. This may take a while.
During this time, you or some of the project's contributors may not be able
to push to this repository.
Blame SOURCES/0262-lib-stop-printing-out-a-debug-message-adding.patch
Branch: 66206f57e082694d742447df2e0a6d6615214761
a013b7
From d6b5cbc2b8f444f283df9c12eac6ce70d6101a2c Mon Sep 17 00:00:00 2001
a013b7
From: Jakub Filak <jfilak@redhat.com>
a013b7
Date: Thu, 24 Nov 2016 09:10:46 +0100
a013b7
Subject: [PATCH] lib: stop printing out a debug message 'adding: '
a013b7
a013b7
The muted message is a debug message for sure and is printed out when the
a013b7
user runs:
a013b7
a013b7
abrt-cli report -v <ID>
a013b7
a013b7
Signed-off-by: Jakub Filak <jfilak@redhat.com>
a013b7
---
a013b7
src/lib/abrt_glib.c | 2 +-
a013b7
1 file changed, 1 insertion(+), 1 deletion(-)
a013b7
a013b7
diff --git a/src/lib/abrt_glib.c b/src/lib/abrt_glib.c
a013b7
index 60e104f..2b841de 100644
a013b7
--- a/src/lib/abrt_glib.c
a013b7
+++ b/src/lib/abrt_glib.c
a013b7
@@ -27,7 +27,7 @@ GList *string_list_from_variant(GVariant *variant)
a013b7
gchar *str;
a013b7
while (g_variant_iter_loop(&iter, "s", &str))
a013b7
{
a013b7
- log_notice("adding: %s", str);
a013b7
+ log_debug("adding: %s", str);
a013b7
list = g_list_prepend(list, xstrdup(str));
a013b7
}
a013b7
a013b7
--
a013b7
1.8.3.1
a013b7