log which name we are resolving
authorChristian Grothoff <christian@grothoff.org>
Thu, 23 Feb 2017 21:52:53 +0000 (22:52 +0100)
committerChristian Grothoff <christian@grothoff.org>
Thu, 23 Feb 2017 21:55:31 +0000 (22:55 +0100)
src/gns/gnunet-service-gns.c

index 570c07fdfbd3fbd4184b880b6e96e3c022b977c6..0ca25ac190d7069d9b43dd98b5e585ebb877f876 100644 (file)
@@ -328,11 +328,12 @@ handle_lookup (void *cls,
   char *nameptr = name;
   const char *utf_in;
 
-  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
-              "Received LOOKUP message\n");
   GNUNET_SERVICE_client_continue (gc->client);
   utf_in = (const char *) &sh_msg[1];
   GNUNET_STRINGS_utf8_tolower (utf_in, nameptr);
+  GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+              "Received LOOKUP `%s' message\n",
+              name);
 
   clh = GNUNET_new (struct ClientLookupHandle);
   GNUNET_CONTAINER_DLL_insert (gc->clh_head,