Updated Accounts module to use named logging.
Review Request #11810 — Created Sept. 17, 2021 and discarded — Latest diff uploaded
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.