diff options
-rw-r--r-- | src/c/http.c | 1 | ||||
-rw-r--r-- | src/c/request.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/c/http.c b/src/c/http.c index d52661ce..64e6ef1e 100644 --- a/src/c/http.c +++ b/src/c/http.c @@ -192,6 +192,7 @@ static void *worker(void *data) { uw_set_headers(ctx, get_header, headers); + printf("Serving URI %s....\n", path); rr = uw_request(rc, ctx, method, path, query_string, body, back - body, on_success, on_failure, NULL, log_error, log_debug, diff --git a/src/c/request.c b/src/c/request.c index b4c3130b..60836b35 100644 --- a/src/c/request.c +++ b/src/c/request.c @@ -414,8 +414,6 @@ request_result uw_request(uw_request_context rc, uw_context ctx, } } - log_debug(logger_data, "Serving URI %s....\n", path); - while (1) { uw_setQueryString(ctx, rc->queryString); |