Stefan Egli created JCR-3844:
--------------------------------
Summary: JcrRemotingServlet does not log full stacktrace
Key: JCR-3844
URL: https://issues.apache.org/jira/browse/JCR-3844
Project: Jackrabbit Content Repository
Issue Type: Bug
Components: jackrabbit-jcr-server
Affects Versions: 2.8
Reporter: Stefan Egli
org.apache.jackrabbit.server.remoting.davex.JcrRemotingServlet.doPost contains
a log.warn which 'swallows' the full stacktrace. If, further up the stack, the
stacktrace is not issued, it will be lost. Suggesting to replace
{code}
log.warn(e.getMessage());
{code}
with
{code}
log.warn(e.getMessage(),e);
{code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)