Replace g_print with g_log in asyncns-resolver:
authorFrank Zschockelt <lm@freakysoft.de>
Sat, 16 Jan 2010 18:00:47 +0100
changeset 611 1535ce921a7a
parent 610 5b1a4edfe5cf
child 612 70ab966760fd
Replace g_print with g_log in asyncns-resolver: I'll probably drop the internal asyncns, if nobody complains loud enough.
loudmouth/lm-asyncns-resolver.c
--- a/loudmouth/lm-asyncns-resolver.c	Sat Jan 16 17:41:23 2010 +0100
+++ b/loudmouth/lm-asyncns-resolver.c	Sat Jan 16 18:00:47 2010 +0100
@@ -32,6 +32,7 @@
 #include <arpa/nameser.h>
 #include <resolv.h>
 
+#include "lm-debug.h"
 #include "lm-error.h"
 #include "lm-internals.h"
 #include "lm-marshal.h"
@@ -230,7 +231,7 @@
     int                    srv_len;
     gboolean               result = FALSE;
 
-    g_print ("srv_done callback\n");
+    g_log (LM_LOG_DOMAIN, LM_LOG_LEVEL_NET, "srv_done callback\n");
 
     srv_len = asyncns_res_done (priv->asyncns_ctx,
                                 priv->resolv_query, &srv_ans);
@@ -244,14 +245,16 @@
         gchar *new_server;
         guint  new_port;
 
-        g_print ("trying to parse srv response\n");
+        g_log (LM_LOG_DOMAIN, LM_LOG_LEVEL_NET,
+               "trying to parse srv response\n");
 
         result = _lm_resolver_parse_srv_response (srv_ans, srv_len,
                                                   &new_server,
                                                   &new_port);
         if (result == TRUE) {
-            g_print ("worked, new host/post is %s/%d\n",
-                     new_server, new_port);
+            g_log (LM_LOG_DOMAIN, LM_LOG_LEVEL_NET,
+                   "worked, new host/post is %s/%d\n",
+                   new_server, new_port);
 
             g_object_set (resolver,
                           "host", new_server,
@@ -291,7 +294,9 @@
 
     srv = _lm_resolver_create_srv_string (domain, service, protocol);
 
-    g_print ("ASYNCNS: Looking up service: %s %s %s\n[%s]", domain, service, protocol, srv);
+    g_log (LM_LOG_DOMAIN, LM_LOG_LEVEL_NET,
+           "ASYNCNS: Looking up service: %s %s %s [%s]\n",
+           domain, service, protocol, srv);
 
     if (!asyncns_resolver_prep (resolver, /* Use GError? */ NULL)) {
         g_warning ("Failed to initiate the asyncns library");