diff --git a/echo-notifications/src/main/groovy/com/netflix/spinnaker/echo/notification/AbstractEventNotificationAgent.groovy b/echo-notifications/src/main/groovy/com/netflix/spinnaker/echo/notification/AbstractEventNotificationAgent.groovy index f4d735ae7..a7f580530 100644 --- a/echo-notifications/src/main/groovy/com/netflix/spinnaker/echo/notification/AbstractEventNotificationAgent.groovy +++ b/echo-notifications/src/main/groovy/com/netflix/spinnaker/echo/notification/AbstractEventNotificationAgent.groovy @@ -53,7 +53,7 @@ abstract class AbstractEventNotificationAgent implements EchoEventListener { @Override void processEvent(Event event) { - if (log.isDebugEnabled() && mapper != null) { + if (log.isDebugEnabled() && mapper != null && !event.getDetails().getType().equals("pubsub")) { log.debug("Event received: " + mapper.writerWithDefaultPrettyPrinter().writeValueAsString(event)) }