@edebill @benhamill i actually really like how python logging is implemented. all modules can register their own loggers; the root logger controls the what and the where, and is configured by thd program.
it only works because all modules, including logging, are only loaded once into the global symbol table tho, which isn't applicable in all languages.