Skip to content

Commit 7da5731

Browse files
committed
Improve error logging and update API key
Enhanced error logging in TurAemPluginProcess by including the exception object for better traceability. Updated TURING_API_KEY in env.cmd for the WKND sample script.
1 parent 1b811c2 commit 7da5731

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
set TURING_URL=http://localhost:2700
2-
set TURING_API_KEY=8c5054becc05453cb50fa0f31
2+
set TURING_API_KEY=6bb0d3df670e4c23bc49ff258

turing-aem/aem-plugin/src/main/java/com/viglet/turing/connector/plugin/aem/TurAemPluginProcess.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -435,7 +435,7 @@ private void getChildrenFromJson(String nodePath, JSONObject jsonObject,
435435
// interface
436436
} catch (Exception e) {
437437
log.warn("Reactive processing failed, falling back to synchronous: {}",
438-
e.getMessage());
438+
e.getMessage(), e);
439439
}
440440
}
441441

0 commit comments

Comments
 (0)