get list of all loggers
()
| 86 | |
| 87 | |
| 88 | def loggers(): |
| 89 | """ get list of all loggers """ |
| 90 | root = logging.root |
| 91 | existing = list(root.manager.loggerDict.keys()) |
| 92 | return [logging.getLogger(name) for name in existing] |
| 93 | |
| 94 | |
| 95 | class SafeAtoms(dict): |
no test coverage detected