diff options
author | Christian Grothoff <christian@grothoff.org> | 2015-05-22 10:20:33 +0000 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2015-05-22 10:20:33 +0000 |
commit | f1593742051929aea7f86175b4af11ef45f3d481 (patch) | |
tree | 0afdb7e6488596ac0c52278d0231ef3c0e8bfad5 /src/regex | |
parent | 34e234898c8388d08bad5e8a14e5de3fb0ab8beb (diff) |
-more verbose
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); |