Open pythonhubdev opened 7 months ago
The second issue was with logging I couldn't configure the hypercorn log either with a custom logger class or with the config
This is what I'm struggling with right now. I can't seem to find any documentation or examples that outline the proper way to pass a custom logger class. All I'd like to do is change the formatting: https://github.com/pgjones/hypercorn/blob/main/src/hypercorn/logging.py#L41
Is there an easier way to change the default log formatting?
Hi, I am also struggling with customizing the logging by using a json format. Have you guys been able to work this out? Are there any example using the --log-config option?
Hi, I have started using
hypercorn
very recently to move away fromuvicorn
orgunicorn
there are certain issues I'm facing while trying to configure it through either aTOML
file or a python module.use_reloader
was not working when I was trying to use it through python code and serve itconfig.loglevel
this is the only config that worked for me for the logs. When I tried to configure withTOML
file even theloglevel
was not getting affected.Can you provide an example at least one TOML based configuration file and one python file to customise the logger. This will be very useful.