Skip to content

Commit 9a12595

Browse files
committed
remove logging
1 parent 7b0b5e7 commit 9a12595

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/dotenv_vault/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
__title__ = "python-dotenv-vault"
88
__description__ = "Syncing your .env to the cloud."
99
__url__ = "https://github.com/dotenv-org/dotenv-vault-python"
10-
__version__ = "0.0.7"
10+
__version__ = "0.0.8"
1111
__author__ = "dotenv"
1212
__author_email__ = "[email protected]"
1313
__license__ = "MIT"

src/dotenv_vault/main.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ def load_dotenv(
2323
This is to inject the parameters to evironment variables.
2424
"""
2525
dotenv_vault = DotEnvVault()
26-
logger.info(f'dotenv_key:{dotenv_vault.dotenv_key}')
2726
if dotenv_vault.dotenv_key:
2827
logger.info('Getting .env from vault.')
2928
vault_stream = dotenv_vault.parsed_vault()

src/dotenv_vault/vault.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def parsed_vault(self) -> bytes:
5050

5151
# Getting ciphertext from correct environment in .env.vault
5252
environment_key = f'DOTENV_VAULT_{vault_environment}'
53-
logging.info(f'Getting {environment_key}.')
53+
logging.info(f'Getting key from {environment_key}.')
5454

5555
# use python-dotenv library class.
5656
dotenv = DotEnv(dotenv_path=env_vault_path)

0 commit comments

Comments
 (0)