From 3fc1c1f5f10d0f97f5f36e50d68fc271cca4a273 Mon Sep 17 00:00:00 2001 From: Jonathan Lukas Date: Wed, 11 Sep 2024 15:34:26 +0200 Subject: [PATCH] feature: log inbound context log to logger (#3254) * feature: log inbound context log to logger * make it simple --- .../runtime/core/inbound/InboundConnectorContextImpl.java | 1 + 1 file changed, 1 insertion(+) diff --git a/connector-runtime/connector-runtime-core/src/main/java/io/camunda/connector/runtime/core/inbound/InboundConnectorContextImpl.java b/connector-runtime/connector-runtime-core/src/main/java/io/camunda/connector/runtime/core/inbound/InboundConnectorContextImpl.java index 9daf877e51..4bf39c64ab 100644 --- a/connector-runtime/connector-runtime-core/src/main/java/io/camunda/connector/runtime/core/inbound/InboundConnectorContextImpl.java +++ b/connector-runtime/connector-runtime-core/src/main/java/io/camunda/connector/runtime/core/inbound/InboundConnectorContextImpl.java @@ -136,6 +136,7 @@ public Health getHealth() { @Override public void log(Activity log) { + LOG.debug("{}", log); this.logs.add(log); }