Skip to content

Verbose parameter not working  #477

Open
@TheGeeKing

Description

@TheGeeKing

The verbose parameter verbose: Whether to output a warning the .env file is missing. doesn't raise any warning.

>>> 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(

Activity

linked a pull request that will close this issue on Aug 14, 2023
stefano-ottolenghi

stefano-ottolenghi commented on Feb 2, 2024

@stefano-ottolenghi

@theskumar any news on this? I can confirm it is an issue.

TheGeeKing

TheGeeKing commented on Feb 3, 2024

@TheGeeKing
Author

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.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

      Development

      Participants

      @TheGeeKing@stefano-ottolenghi

      Issue actions

        Verbose parameter not working · Issue #477 · theskumar/python-dotenv