I was trying to create a custom attribute for logging (caller's class name, module name, etc.) and got stuck with a strange exception telling me that the LogRecord instance created in the process did not have the necessary attributes. After a bit of testing I ended up with this:
import logging
class MyLogger(logging.getLoggerClass()):
value = None
logging.setLoggerClass(MyLogger)
loggers = []
loggers.append(logging.getLogger())
loggers.append(logging.getLogger(""))
loggers.append(logging.getLogger("Name"))
for logger in loggers:
print isinstance(logger, MyLogger), hasattr(logger, "value")
This seemingly correct piece of code yields:
False False
False False
True True
Bug or feature?