summaryrefslogtreecommitdiff
path: root/src/trg-client.c
diff options
context:
space:
mode:
authorGravatar Alan F <ajf@eth0.org.uk>2014-03-09 17:25:32 +0000
committerGravatar Alan F <ajf@eth0.org.uk>2014-03-09 17:25:32 +0000
commit56a60210894a344d66ec3c77f807c2867491f45d (patch)
treebe59a336f3277fb36c3512c2875a4486339930ab /src/trg-client.c
parent178dcc788892a216b346d4937970efa351bc4863 (diff)
hacking to support the options dialog from rss feeds
Diffstat (limited to 'src/trg-client.c')
-rw-r--r--src/trg-client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/trg-client.c b/src/trg-client.c
index 7e1a784..f03e893 100644
--- a/src/trg-client.c
+++ b/src/trg-client.c
@@ -532,7 +532,7 @@ static CURL* get_curl(TrgClient *tc, guint http_class)
curl_easy_setopt(curl, CURLOPT_USERAGENT, PACKAGE_NAME);
curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION,
&http_receive_callback);
- curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
+ //curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
if (http_class == HTTP_CLASS_TRANSMISSION) {
curl_easy_setopt(curl, CURLOPT_WRITEHEADER, (void *) tc);
@@ -633,7 +633,7 @@ trg_response *dispatch(TrgClient * tc, JsonNode * req)
json_node_free(req);
#ifdef DEBUG
if (g_getenv("TRG_SHOW_OUTGOING"))
- g_debug("=>(OUTgoing)=>: %s", serialized);
+ g_message("=>(OUTgoing)=>: %s", serialized);
#endif
return dispatch_str(tc, serialized);
}