summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorRoss Burton <ross@linux.intel.com>2009-05-15 14:24:12 +0100
committerRoss Burton <ross@linux.intel.com>2009-05-15 14:24:12 +0100
commit2dca80c240303d371bd29bc51d63a316e7cbdf11 (patch)
tree016f3b1616f9cfaabd7c8de20c5f07160f17ef9b /examples
parentddc571725a1de86857643a7f2f34eee34f2587a8 (diff)
downloadlibrest-2dca80c240303d371bd29bc51d63a316e7cbdf11.tar.gz
Use g_print instead of g_debug
Diffstat (limited to 'examples')
-rw-r--r--examples/test-xml.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/test-xml.c b/examples/test-xml.c
index 8a85e29..c7ec853 100644
--- a/examples/test-xml.c
+++ b/examples/test-xml.c
@@ -64,7 +64,7 @@ _rest_xml_node_output (RestXmlNode *node, gint depth)
do {
attrs_output = _generate_attrs_output (node->attrs);
- g_debug ("%*s[%s, %s, %s]",
+ g_print ("%*s[%s, %s, %s]\n",
depth,
"",
node->name,
@@ -75,7 +75,7 @@ _rest_xml_node_output (RestXmlNode *node, gint depth)
for (l = values; l; l = l->next)
{
child = (RestXmlNode *)l->data;
- g_debug ("%*s%s - >", depth, "", child->name);
+ g_print ("%*s%s - >\n", depth, "", child->name);
_rest_xml_node_output (child, depth + 4);
}
g_list_free (values);