summaryrefslogtreecommitdiffstats
path: root/src/lib/event_xml_parser.c
diff options
context:
space:
mode:
authorJiri Moskovcak <jmoskovc@redhat.com>2011-03-08 14:13:51 +0100
committerJiri Moskovcak <jmoskovc@redhat.com>2011-03-08 14:13:51 +0100
commit02ba31ab300c06461d444f53139dd3712700abf5 (patch)
tree46246699842dcb305d0104543850e14e15ef79e5 /src/lib/event_xml_parser.c
parent00bd0d83d1907c4a8beaae1d76fa284c0faf13bf (diff)
downloadabrt-02ba31ab300c06461d444f53139dd3712700abf5.tar.gz
abrt-02ba31ab300c06461d444f53139dd3712700abf5.tar.xz
abrt-02ba31ab300c06461d444f53139dd3712700abf5.zip
silence the output
Diffstat (limited to 'src/lib/event_xml_parser.c')
-rw-r--r--src/lib/event_xml_parser.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/src/lib/event_xml_parser.c b/src/lib/event_xml_parser.c
index 7b9edc4f..ee22102e 100644
--- a/src/lib/event_xml_parser.c
+++ b/src/lib/event_xml_parser.c
@@ -2,6 +2,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include "abrtlib.h"
#include "event_config.h"
#define EVENT_ELEMENT "event"
@@ -42,12 +43,13 @@ void start_element(GMarkupParseContext *context,
in_option = 1;
event_option_t *option = (event_option_t *)malloc(sizeof(event_option_t));
//we need to prepend, so ui->options always points to the last created option
+ VERB2 log("adding option\n");
ui->options = g_list_prepend(ui->options, option);
int i;
for(i = 0; attribute_names[i] != NULL; ++i)
{
- //g_print("attr: %s:%s\n", attribute_names[i], attribute_values[i]);
+ VERB2 log("attr: %s:%s\n", attribute_names[i], attribute_values[i]);
if(strcmp(attribute_names[i], "name") == 0)
option->name = strdup(attribute_values[i]);
if(strcmp(attribute_names[i], "type") == 0)
@@ -107,12 +109,12 @@ void text(GMarkupParseContext *context,
event_option_t *option = (event_option_t *)((ui->options)->data);
if(strcmp(inner_element, LABEL_ELEMENT) == 0)
{
- //g_print("\tnew label: \t\t%s\n", _text);
+ VERB2 log("\tnew label: \t\t%s\n", _text);
option->label = _text;
}
if(strcmp(inner_element, DESCRIPTION_ELEMENT) == 0)
{
- //g_print("\ttooltip: \t\t%s\n", _text);
+ VERB2 log("\ttooltip: \t\t%s\n", _text);
option->description = _text;
}
}
@@ -144,7 +146,7 @@ void passthrough(GMarkupParseContext *context,
gpointer user_data,
GError **error)
{
- g_print("passthrough\n");
+ VERB2 log("passthrough\n");
}
// Called on error, including one set by other