Logging?
david9100 opened this issue · 2 comments
david9100 commented
Your example works great and I think that I'll be able to build off of that. One question is that you give some logging examples:
ngx_http_c_func_log(info, ctx, "%s", "Starting The Application");
but it does not seem to log anywhere. Is there something special that must be done?
minikawoon commented
It is logging to your nginx error log path. Have you defined error log path
in your nginx?
…On Wed, 24 Oct 2018 at 4:52 AM, david9100 ***@***.***> wrote:
Your example works great and I think that I'll be able to build off of
that. One question is that you give some logging examples:
ngx_http_c_func_log(info, ctx, "%s", "Starting The Application");
but it does not seem to log anywhere. Is there something special that must
be done?
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#5>, or mute the
thread
<https://github.com/notifications/unsubscribe-auth/AcS6aDWr278_zs2dA3q0lyrWn9DHVaG6ks5un4F8gaJpZM4X2o32>
.
david9100 commented
That did the trick. Thanks!