<!-- Before creating a new issue, please check if the issue already exists in the [open issues panel](https://github.com/Azure/azure-functions-python-worker/issues?q=is%3Aissue+is%3Aopen) and please check the [Troubleshooting Guides](https://github.com/Azure/azure-functions-python-worker/wiki#troubleshooting-guides) in our wiki. Please describe your issue or feature request below. --> ### Investigative information ###### Please provide the following: In any python function, log level debug does not display in both local and portal logs. ### Repro steps ###### Provide the steps required to reproduce the problem: <!-- Example: 1. Create a python function using vscode quickstart 2. Add { "version": "2.0", "logging": { "applicationInsights": { "samplingSettings": { "isEnabled": true, "excludedTypes": "Request" } }, "logLevel": { "default": "Debug" } To your host.json 3. Add some logging.debug("print something here") statements to __init__.py code 4. Run the code and hit it with a trigger to see if the debug logs come out. --> ### Expected behavior ###### Provide a description of the expected behavior. <!-- Example: - After I perform step 4, I should see the debug statements print out. --> ### Actual behavior ###### Provide a description of the actual behavior observed. <!-- Example: - Step 4 actually does not print debug statements. --> ### Known workarounds ###### Provide a description of any known workarounds. <!-- Example: - Turn off the circuit breaker for the lights. --> ### Contents of the requirements.txt file: ###### Provide the requirements.txt file to help us find out module related issues. <!-- Example: ``` azure-functions azure-storage-blob==12.1.0 ``` --> ### Related information ###### Provide any related information * Links to source * Bindings used <!-- Uncomment this if you want to include your source (wrap it in details to make browsing easier) <details> <summary>Source</summary> ```python # __init__.py def main(req: func.HttpRequest) -> func.HttpResponse: logging.info('Python HTTP trigger function processed a request.') return "Done" ``` ```txt azure-functions==1.0.0a4 azure-functions-worker==1.0.0a4 grpcio==1.14.2 grpcio-tools==1.14.2 protobuf==3.6.1 six==1.11.0 ``` </details> -->