aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-09-24 09:00:40 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-09-24 09:00:40 +0000
commitd0e14875b454a8450de7a26dbf20274f8d29e906 (patch)
tree61901c80b074ff871acdb70fc8c6dcaafe9353d8 /src/transport
parente7a1544e70d6f3f1c22c67bf26c28c338f354a26 (diff)
downloadgnunet-d0e14875b454a8450de7a26dbf20274f8d29e906.tar.gz
gnunet-d0e14875b454a8450de7a26dbf20274f8d29e906.zip
- hunting bugs on buildbots
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/plugin_transport_http_client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/transport/plugin_transport_http_client.c b/src/transport/plugin_transport_http_client.c
index f46688ce9..71772a185 100644
--- a/src/transport/plugin_transport_http_client.c
+++ b/src/transport/plugin_transport_http_client.c
@@ -729,7 +729,7 @@ client_send_cb (void *stream, size_t size, size_t nmemb, void *cls)
729 if (GNUNET_YES == s->put_tmp_disconnecting) 729 if (GNUNET_YES == s->put_tmp_disconnecting)
730 { 730 {
731 731
732 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, s->plugin->name, 732 GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, s->plugin->name,
733 "Session %p/connection %p: disconnect due to inactivity\n", 733 "Session %p/connection %p: disconnect due to inactivity\n",
734 s, s->client_put); 734 s, s->client_put);
735 s->put_tmp_disconnecting = GNUNET_NO; 735 s->put_tmp_disconnecting = GNUNET_NO;
@@ -1049,7 +1049,7 @@ client_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1049 { 1049 {
1050 if ((0 != msg->data.result) || (http_statuscode != 200)) 1050 if ((0 != msg->data.result) || (http_statuscode != 200))
1051 { 1051 {
1052 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, 1052 GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1053 "Session %p/connection %p: PUT connection to `%s' ended with status %i reason %i: `%s'\n", 1053 "Session %p/connection %p: PUT connection to `%s' ended with status %i reason %i: `%s'\n",
1054 s, msg->easy_handle, GNUNET_i2s (&s->target), 1054 s, msg->easy_handle, GNUNET_i2s (&s->target),
1055 http_statuscode, 1055 http_statuscode,
@@ -1057,7 +1057,7 @@ client_run (void *cls, const struct GNUNET_SCHEDULER_TaskContext *tc)
1057 curl_easy_strerror (msg->data.result)); 1057 curl_easy_strerror (msg->data.result));
1058 } 1058 }
1059 else 1059 else
1060 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, plugin->name, 1060 GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, plugin->name,
1061 "Session %p/connection %p: PUT connection to `%s' ended normal\n", 1061 "Session %p/connection %p: PUT connection to `%s' ended normal\n",
1062 s, msg->easy_handle, GNUNET_i2s (&s->target)); 1062 s, msg->easy_handle, GNUNET_i2s (&s->target));
1063 if (s->client_get == NULL) 1063 if (s->client_get == NULL)