MCPcopy Index your code
hub / github.com/dianping/cat / logErrorWithCategory

Method logErrorWithCategory

lib/java/src/main/java/com/dianping/cat/Cat.java:411–419  ·  view source on GitHub ↗
(String category, String message, Throwable cause)

Source from the content-addressed store, hash-verified

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()) {

Callers

nothing calls this directly

Calls 4

isEnabledMethod · 0.95
getProducerMethod · 0.95
errorHandlerMethod · 0.95
logErrorWithCategoryMethod · 0.65

Tested by

no test coverage detected