diff options
author | Adam Chlipala <adam@chlipala.net> | 2011-01-23 15:34:06 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2011-01-23 15:34:06 -0500 |
commit | 64d72f30b166faec8587aa14164a2b9e32d414c6 (patch) | |
tree | 3ab0e9b5df5df1571ea9c3e1a9165a566462db66 /src/c | |
parent | d918f6338b3ceaaf8427366bd0a08f4bb73851a6 (diff) |
Only announce URI serving in standalone HTTP server (grandfathered into release!)
Diffstat (limited to 'src/c')
-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); |