We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The verbose parameter verbose: Whether to output a warning the .env file is missing. doesn't raise any warning.
verbose: Whether to output a warning the .env file is missing.
>>> from dotenv import dotenv_values >>> dotenv_values() OrderedDict() >>> dotenv_values(verbose=True) OrderedDict() >>> dotenv_values("a", verbose=True) OrderedDict() >>> dotenv_values(".", verbose=True) OrderedDict() >>> dotenv_values("/", verbose=True) OrderedDict() >>> dotenv_values("?", verbose=True) OrderedDict() >>> dotenv_values("¨", verbose=True) OrderedDict()
The verbose doesn't seem to have any effect. logger.info() was used instead of logger.warning() as it should. ->
logger.info()
logger.warning()
python-dotenv/src/dotenv/main.py
Line 61 in 3ffcef6
The text was updated successfully, but these errors were encountered:
@theskumar any news on this? I can confirm it is an issue.
Sorry, something went wrong.
The repo seems to have been inactive for the last 7 months, some commits were made 11d ago but none of my 2 issues/PR have been commented.
Successfully merging a pull request may close this issue.
The verbose parameter
verbose: Whether to output a warning the .env file is missing.
doesn't raise any warning.The verbose doesn't seem to have any effect.
logger.info()
was used instead oflogger.warning()
as it should. ->python-dotenv/src/dotenv/main.py
Line 61 in 3ffcef6
The text was updated successfully, but these errors were encountered: