Skip to content

Commit

Permalink
Log password if it's generated as stated in the help
Browse files Browse the repository at this point in the history
  • Loading branch information
fkantelberg committed Jan 16, 2025
1 parent 1f7a344 commit cf0d0af
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/mail_devel/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ def main() -> None:
args = Service.parse()

utils.configure_logging("DEBUG" if args.debug else "INFO")
if args.gen_password:
_logger.info(f"Password: {args.password}")
asyncio.run(run(args))


Expand Down
2 changes: 1 addition & 1 deletion src/mail_devel/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import ssl
import sys

VERSION = "0.14.1"
VERSION = "0.14.2"

DEFAULT_LOG_LEVEL = "info"
LOG_FORMAT = "{asctime} [{levelname:^8}] {message}"
Expand Down

0 comments on commit cf0d0af

Please sign in to comment.