I've written a custom Apache2 module and I'm having some difficulty with logging. Logging is working as expected using the global log level. For example, if I set the following I get debug logs from my module:
LogLevel Debug
However, if I attempt to set the loglevel for only my module I do not see debug logs:
LogLevel Warn mod_proxy_jwt_auth.c:Debug
In looking at the logs I see other modules output "[date] [module_name:level]" whereas mine is outputting "[date] [:level]". I'm guessing this is a factor in the per-module log level not working and that I'm getting some part of the module API wrong. However, I reviewed
https://httpd.apache.org/docs/2.4/developer/modguide.html and I simply don't see my error.
Can anyone advise? Thanks!