Is there any way to get a list of all the loggers that have been defined? So if somebody has done: from logging import getLogger getLogger("foo") getLogger("foo.bar") getLogger("baz") I want something which will give me back ["foo", "foo.bar", "baz"].