Updated Accounts module to use named logging.

Review Request #11810 — Created Sept. 17, 2021 and discarded — Latest diff uploaded

Information

Review Board
release-4.0.x

Reviewers

Only some logging statements in the Accounts module used named logging, when all of them should. So all logging statements were given the name "logger", and that was used instead.

Ex.
logging.warning("Some warning message")
becomes
logger = logging.getLogger(__name__) logger.warning("This is a warning to a named logger")

Python unit testing done.

Commits

Files