aboutsummaryrefslogtreecommitdiff
path: root/src/transport
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2012-09-24 08:50:22 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2012-09-24 08:50:22 +0000
commite7a1544e70d6f3f1c22c67bf26c28c338f354a26 (patch)
tree95fc8cca0d450d724cc8ffef603660a7682c36ae /src/transport
parent9870c79db5747d3f83324de7feea2690dcddbfa2 (diff)
downloadgnunet-e7a1544e70d6f3f1c22c67bf26c28c338f354a26.tar.gz
gnunet-e7a1544e70d6f3f1c22c67bf26c28c338f354a26.zip
- hunting bugs on buildbots
Diffstat (limited to 'src/transport')
-rw-r--r--src/transport/plugin_transport_http_client.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/transport/plugin_transport_http_client.c b/src/transport/plugin_transport_http_client.c
index 7ea55deb1..f46688ce9 100644
--- a/src/transport/plugin_transport_http_client.c
+++ b/src/transport/plugin_transport_http_client.c
@@ -449,7 +449,7 @@ http_client_plugin_send (void *cls,
449 return GNUNET_SYSERR; 449 return GNUNET_SYSERR;
450 } 450 }
451 451
452 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, s->plugin->name, 452 GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, s->plugin->name,
453 "Session %p/connection %p: Sending message with %u to peer `%s' with \n", 453 "Session %p/connection %p: Sending message with %u to peer `%s' with \n",
454 s, s->client_put, 454 s, s->client_put,
455 msgbuf_size, GNUNET_i2s (&s->target)); 455 msgbuf_size, GNUNET_i2s (&s->target));
@@ -467,7 +467,7 @@ http_client_plugin_send (void *cls,
467 467
468 if (GNUNET_YES == s->put_tmp_disconnected) 468 if (GNUNET_YES == s->put_tmp_disconnected)
469 { 469 {
470 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, s->plugin->name, 470 GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, s->plugin->name,
471 "Session %p: Reconnecting PUT connection\n", 471 "Session %p: Reconnecting PUT connection\n",
472 s); 472 s);
473 s->put_tmp_disconnected = GNUNET_NO; 473 s->put_tmp_disconnected = GNUNET_NO;
@@ -482,7 +482,7 @@ http_client_plugin_send (void *cls,
482 GNUNET_assert (s->put_disconnect_task != GNUNET_SCHEDULER_NO_TASK); 482 GNUNET_assert (s->put_disconnect_task != GNUNET_SCHEDULER_NO_TASK);
483 GNUNET_SCHEDULER_cancel (s->put_disconnect_task); 483 GNUNET_SCHEDULER_cancel (s->put_disconnect_task);
484 s->put_disconnect_task = GNUNET_SCHEDULER_NO_TASK; 484 s->put_disconnect_task = GNUNET_SCHEDULER_NO_TASK;
485 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, s->plugin->name, 485 GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, s->plugin->name,
486 "Session %p/connection %p: unpausing connection\n", 486 "Session %p/connection %p: unpausing connection\n",
487 s, s->client_put); 487 s, s->client_put);
488 s->put_paused = GNUNET_NO; 488 s->put_paused = GNUNET_NO;
@@ -1149,13 +1149,13 @@ client_connect_put (struct Session *s)
1149 /* create put connection */ 1149 /* create put connection */
1150 if (NULL == s->client_put) 1150 if (NULL == s->client_put)
1151 { 1151 {
1152 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, s->plugin->name, 1152 GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, s->plugin->name,
1153 "Session %p : Init PUT handle \n", s); 1153 "Session %p : Init PUT handle \n", s);
1154 s->client_put = curl_easy_init (); 1154 s->client_put = curl_easy_init ();
1155 } 1155 }
1156 else 1156 else
1157 { 1157 {
1158 GNUNET_log_from (GNUNET_ERROR_TYPE_DEBUG, s->plugin->name, 1158 GNUNET_log_from (GNUNET_ERROR_TYPE_ERROR, s->plugin->name,
1159 "Session %p : Reusing PUT handle %p \n", s, s->client_put); 1159 "Session %p : Reusing PUT handle %p \n", s, s->client_put);
1160 } 1160 }
1161#if VERBOSE_CURL 1161#if VERBOSE_CURL