(msg, *args, **kwargs)
| 83 | |
| 84 | @public |
| 85 | def log_exception(msg, *args, **kwargs): |
| 86 | global HAS_ERROR |
| 87 | HAS_ERROR = True |
| 88 | return LOG.exception(BraceMessage(msg, *args, **kwargs)) |
| 89 | |
| 90 | |
| 91 | @public |
no test coverage detected
searching dependent graphs…