ok thanks, then probably write to syslog using syslog API's and it seems
nginx already supports syslog. Will that work?
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,285729,285737#msg-285737
___
nginx mailing list
nginx@nginx.org
http://mai
On Fri, Sep 27, 2019 at 07:17:59AM -0400, astre wrote:
> Right, actually the question is when I use std::cout nothing gets printed in
> error_log even when it is set to debug.
Logging in nginx is more complicated than just writing to fd #1. If you want to
log a message to nginx error log, you sho
Right, actually the question is when I use std::cout nothing gets printed in
error_log even when it is set to debug.
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,285729,285733#msg-285733
___
nginx mailing list
nginx@nginx.org
http://mailma
On Fri, Sep 27, 2019 at 06:51:12AM -0400, astre wrote:
> Thanks Roman, it is working. Is there a way to directly print using
> std::cout instead of ngx_log_* functions ?
> P.S: I'm writing module in C++.
You can use string length in the 'len' field to limit the number of characters
printed. There
Thanks Roman, it is working. Is there a way to directly print using
std::cout instead of ngx_log_* functions ?
P.S: I'm writing module in C++.
Posted at Nginx Forum:
https://forum.nginx.org/read.php?2,285729,285731#msg-285731
___
nginx mailing list
ngi
Hi,
On Fri, Sep 27, 2019 at 05:44:09AM -0400, astre wrote:
> Hi,
>
> I trying to print the requested URL path. For that I came across the "uri"
> member which is of type ngx_str_t) under ngx_http_request_t structure. When
> I print the "uri" using ngx_log_debug1 (ngx_log_debug1(NGX_LOG_DEBUG_HTTP
Hi,
I trying to print the requested URL path. For that I came across the "uri"
member which is of type ngx_str_t) under ngx_http_request_t structure. When
I print the "uri" using ngx_log_debug1 (ngx_log_debug1(NGX_LOG_DEBUG_HTTP,
log, 0, "%s", r->uri.data)) I see some extra data printed.
For eg.