Skip to content

Commit

Permalink
Adding stack trace to when logging CLM retrieval error
Browse files Browse the repository at this point in the history
  • Loading branch information
meiao committed Sep 28, 2022
1 parent 6011034 commit 346ea0e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ public void performFinishWork(long finishTime, int opcode, Object returnValue) {
} catch (Throwable t) {
String msg = "An error occurred saving the clm attributes: " + t;
Agent.LOG.severe(msg);
Agent.LOG.log(Level.FINER, msg);
Agent.LOG.log(Level.FINER, msg, t);
}

try {
Expand Down

0 comments on commit 346ea0e

Please sign in to comment.