diff options
Diffstat (limited to 'src/regex')
-rw-r--r-- | src/regex/gnunet-service-regex.c | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/src/regex/gnunet-service-regex.c b/src/regex/gnunet-service-regex.c index 2e0700c0a0..9430143f6c 100644 --- a/src/regex/gnunet-service-regex.c +++ b/src/regex/gnunet-service-regex.c @@ -332,13 +332,16 @@ handle_search (void *cls, GNUNET_SERVER_receive_done (client, GNUNET_SYSERR); return; } + GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, + "Starting to search for `%s'\n", + string); ce = GNUNET_new (struct ClientEntry); ce->client = client; ce->sh = REGEX_INTERNAL_search (dht, - string, - &handle_search_result, - ce, - stats); + string, + &handle_search_result, + ce, + stats); if (NULL == ce->sh) { GNUNET_break (0); |