Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -1871,8 +1871,7 @@ protected Subject getSubject() {
@InterfaceStability.Evolving
public <T> T doAs(PrivilegedAction<T> action) {
if (LOG.isDebugEnabled()) {
LOG.debug("PrivilegedAction [as: {}][action: {}]", this, action,
new Exception());
LOG.debug("PrivilegedAction [as: {}][action: {}]", this, action);
}
return Subject.doAs(subject, action);
}
Expand All @@ -1894,8 +1893,7 @@ public <T> T doAs(PrivilegedExceptionAction<T> action
) throws IOException, InterruptedException {
try {
if (LOG.isDebugEnabled()) {
LOG.debug("PrivilegedAction [as: {}][action: {}]", this, action,
new Exception());
LOG.debug("PrivilegedAction [as: {}][action: {}]", this, action);
}
return Subject.doAs(subject, action);
} catch (PrivilegedActionException pae) {
Expand Down