Fix up logging issues.
Review Request #14779 — Created Jan. 12, 2026 and submitted — Latest diff uploaded
This change fixes up a variety of issues with our logging code:
- Many places were logging to the root logger instead of named loggers.
- Commands had a mix of root loggers and named loggers but they should
all have been usingself.loginstead. - A few places were formatting strings before the logging call, rather
than passing them in as arguments.
- Ran unit tests.
- Verified that code updated to use
self.logshowed output
appropriately.