From: Christian Grothoff Date: Thu, 6 May 2010 09:02:26 +0000 (+0000) Subject: dbg X-Git-Tag: initial-import-from-subversion-38251~21868 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=83daee42f7b70d58b1fdf18b5ef3b848bb12a623;p=oweals%2Fgnunet.git dbg --- diff --git a/src/core/core_api.c b/src/core/core_api.c index 42e8f1c06..9fd90b127 100644 --- a/src/core/core_api.c +++ b/src/core/core_api.c @@ -547,10 +547,11 @@ init_reply_handler (void *cls, const struct GNUNET_MessageHeader *msg) (ntohs (msg->size) != sizeof (struct InitReplyMessage)) || (ntohs (msg->type) != GNUNET_MESSAGE_TYPE_CORE_INIT_REPLY)) { - GNUNET_log (GNUNET_ERROR_TYPE_INFO, + GNUNET_log (GNUNET_ERROR_TYPE_ERROR, _ - ("Error connecting to core service (failed to receive `%s' message).\n"), - "INIT_REPLY"); + ("Error connecting to core service (failed to receive `%s' message, got message of type %u).\n"), + "INIT_REPLY", + ntohs (msg->type)); GNUNET_break (msg == NULL); transmit_start (h, 0, NULL); return;