(String category, String message, Throwable cause)
| 409 | } |
| 410 | |
| 411 | public static void logErrorWithCategory(String category, String message, Throwable cause) { |
| 412 | if (isEnabled()) { |
| 413 | try { |
| 414 | Cat.getProducer().logErrorWithCategory(category, message, cause); |
| 415 | } catch (Exception e) { |
| 416 | errorHandler(e); |
| 417 | } |
| 418 | } |
| 419 | } |
| 420 | |
| 421 | public static void logErrorWithCategory(String category, Throwable cause) { |
| 422 | if (isEnabled()) { |
nothing calls this directly
no test coverage detected