diff options
author | Dmitry Volyntsev <xeioex@nginx.com> | 2018-03-30 20:11:10 +0300 |
---|---|---|
committer | Dmitry Volyntsev <xeioex@nginx.com> | 2018-03-30 20:11:10 +0300 |
commit | b4211e871c95b0430cf216e5b184cd4e55d3f97f (patch) | |
tree | 88cbb6dd0e38ab64075f905dbc96053d840fbdc4 /nginx/ngx_http_js_module.c | |
parent | b9ea5b5ced991afa5b73c3f1e87bea653772b57a (diff) | |
download | njs-b4211e871c95b0430cf216e5b184cd4e55d3f97f.tar.gz njs-b4211e871c95b0430cf216e5b184cd4e55d3f97f.zip |
Removed excessive debug log for HTTP req.send().
Diffstat (limited to 'nginx/ngx_http_js_module.c')
-rw-r--r-- | nginx/ngx_http_js_module.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/nginx/ngx_http_js_module.c b/nginx/ngx_http_js_module.c index ed43fda3..f690a489 100644 --- a/nginx/ngx_http_js_module.c +++ b/nginx/ngx_http_js_module.c @@ -1202,9 +1202,6 @@ ngx_http_js_ext_send(njs_vm_t *vm, njs_value_t *args, nxt_uint_t nargs, /* TODO: njs_value_release(vm, value) in buf completion */ - ngx_log_debug2(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, - "http js send: \"%*s\"", s.length, s.start); - b = ngx_calloc_buf(r->pool); if (b == NULL) { return NJS_ERROR; |