From 83daee42f7b70d58b1fdf18b5ef3b848bb12a623 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Thu, 6 May 2010 09:02:26 +0000 Subject: [PATCH] dbg --- src/core/core_api.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) 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; -- 2.25.1