(String message, Throwable cause)
| 389 | } |
| 390 | |
| 391 | public static void logError(String message, Throwable cause) { |
| 392 | if (isEnabled()) { |
| 393 | try { |
| 394 | Cat.getProducer().logError(message, cause); |
| 395 | } catch (Exception e) { |
| 396 | errorHandler(e); |
| 397 | } |
| 398 | } |
| 399 | } |
| 400 | |
| 401 | public static void logError(Throwable cause) { |
| 402 | if (isEnabled()) { |
no test coverage detected