diff options
-rw-r--r-- | src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java index a4df273..39eb0dc 100644 --- a/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java +++ b/src/main/java/org/onap/aai/champ/event/AbstractLoggingChampGraph.java @@ -439,7 +439,7 @@ public abstract class AbstractLoggingChampGraph implements ChampGraph { publisherPool.execute(new EventPublisher(anEvent)); } catch (RejectedExecutionException re) { - logger.error("Event could not be published to the event bus due to: " + re.getMessage()); + logger.error("Event could not be published to the event bus due to: " + re.getMessage(),re); } catch (NullPointerException npe) { logger.error("Can not publish null event to event bus."); |